-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 973 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
from setuptools import setup
setup(
name='TSP-Framework',
version='1.27',
description='Framework para resolver el problema del vendedor viajero aplicando métodos de búsqueda como Simulated Annealing, Genetic Algorithm, Local Search o Iterated Local Search',
long_description=open('README.md').read(),
author='Javier del Canto, Jorge Polanco',
author_email='javier.delcanto.m@mail.pucv.cl, jorge.polanco.sanmartin@gmail.com',
url='https://github.com/Javernaver/TSP-Framework',
scripts=['tspf.py'],
packages=['src.tspf','src.tspf.Algorithms', 'src.tspf.Tools'],
install_requires=['matplotlib', 'prettytable', 'tkinter'],
zip_safe=False,
classifiers=[
'License :: Freeware',
'Programming Language :: Python :: 3.9',
],
include_package_data=True,
package_data={
'': ['instances/*.tsp']
},
entry_points={
'console_scripts':[
'tspf = tspf:main'
]
},
)