forked from jrialland/python-astar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 716 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 716 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='astar',
version='0.9',
author='Julien Rialland',
author_email='julien.rialland@gmail.com',
url='http://github.com/jrialland/python-astar',
description='generic a-star implementation',
provides=['astar'],
long_description='generic a-star implementation',
zip_safe=True,
license='BSD',
package_dir={'': 'src'},
packages=find_packages("src", exclude=["test"]),
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python',
]
)