-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (31 loc) · 1.04 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
from setuptools import setup
setup(
name='pathfinding',
version='0.1.0',
# metadata
author='Jens Tinggaard',
author_email='tinggaard@yahoo.com',
description='Using pathfinding algorithms to solve mazes.',
keywords='pathfinding maze labyrith astar dijkstra breadthfirst depthfirst solving daedalus',
url='https://github.com/Tinggaard/pathfinding',
license=open('LICENSE').read(),
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
python_requires='>=3.6', #tested with
zip_safe=False,
py_modules=[
'pathfinding/main',
],
install_requires=[
'numpy', # basic structure of Graph
'pillow', # image loader and writer
'pydaedalus', # maze generator
'matplotlib', # video handler and plotter
'celluloid', # video renderer wrapper
'click', # arg handler
'colorama' # windows colors in terminal
],
entry_points={
'console_scripts': ['pathfinding=pathfinding.main:cli']
},
)