-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 846 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
31
32
33
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name="pyTSP",
version="0.0.4",
description="A simple and module TSP solver",
long_description=readme,
long_description_content_type='text/markdown',
author="Behnam Lal",
author_email='[email protected]',
url="https://github.com/CheesyChocolate/TSP",
license=license,
packages=find_packages(exclude=('tests', 'docs')),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent"
],
python_requires='>=3.6',
install_requires=[
'scipy',
'matplotlib',
],
)