-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (36 loc) · 1.4 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from os import path
from pathlib import Path
from setuptools import find_packages, setup
cwd = path.abspath(path.dirname(__file__))
with open(path.join(cwd, 'README.md'), encoding='utf-8') as file:
long_description = file.read()
with open(path.join(cwd, 'requirements.txt'), encoding='utf-8') as file:
requirements = list(filter(lambda x: x != '', file.read().split('\n')))
setup(
name='pytsp',
version='1.0',
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
entry_points='''
[console_scripts]
tsplot=pytsp.tsplot:cli
''',
author='Vasileios Sioros',
author_email='billsioros97@gmail.com',
description='The Travelling Salesman Problem in Python',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='tsp tsptw travelling salesman time windows vrp vechicle routing problem cli command line interface',
project_urls={
'Bug Tracker': 'https://github.com/billsioros/computational-geometry',
'Documentation': 'https://github.com/billsioros/computational-geometry',
'Source Code': 'https://github.com/billsioros/computational-geometry',
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)