forked from omershalev/astar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 975 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
import sys
from setuptools import setup, find_packages
if not './astar' in sys.path:
sys.path.append('./astar')
import astar
setup(
name='astar',
version=astar.__version__,
author=astar.__author__,
author_email=astar.__email__,
maintainer=astar.__maintainer__,
url='http://github.com/jrialland/python-astar',
description='A-* algorithm implementation',
provides=['astar'],
long_description='Provides path finding using A-*',
zip_safe=True,
license=astar.__license__,
package_dir={'astar': 'astar/astar'},
packages=['astar'],
include_package_data=True,
keywords=['a-star', 'search', 'path finding'],
platforms=['any'],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Topic :: Scientific/Engineering :: Information Analysis',
'Programming Language :: Python',
]
)