-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 1.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
setuptools.setup(name='kangrouter-py',
version='1.0.4',
description='Python client for the KangRouter transportation service optimizer.',
long_description=open('README.md').read().strip(),
include_package_data = True,
author='TheSolvingMachine',
author_email='[email protected]',
url='https://github.com/TheSolvingMachine/kangrouter-py',
download_url='https://github.com/TheSolvingMachine/kangrouter-py/tarball/1.0.4',
py_modules=['kangrouter','tsm.common.app.exception'],
install_requires=['requests'],
license='Apache',
keywords='Vehicle Routing With Time Windows, Pickup and Delivery, Optimization',
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'])