-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
30 lines (28 loc) · 1016 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import os
from setuptools import setup
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='shipstation',
version='0.1.3',
author='Nathan Cox',
author_email='akujin@akujin.com',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP'
],
description='Bindings for the ShipStation API in Python',
include_package_data=True,
install_requires=['requests>=2.6.0'],
license='MIT',
packages=['shipstation'],
url='https://github.com/natecox/pyshipstation'
)