-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
54 lines (50 loc) · 1.57 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
50
51
52
53
54
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
# read the version from version.txt
with open(os.path.join("pathfinding3d", "version.txt"), encoding="utf-8") as file_handler:
__version__ = file_handler.read().strip()
# Test requirements
test_requirements = [
"pytest",
"pytest-cov",
"pytest-mock",
]
# Documentation requirements
doc_requirements = [
"sphinx",
"sphinx_rtd_theme",
"myst-parser",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx-prompt",
"sphinx-notfound-page",
]
setup(
name="pathfinding3d",
description="Pathfinding algorithms in 3D grids (based on python-pathfinding)",
url="https://github.com/harisankar95/pathfinding3D",
version=__version__,
license="MIT",
author="Harisankar Babu",
keywords=["pathfinding", "pathplanning", "python", "3D", "A*", "Dijkstra", "Theta*"],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
],
packages=[package for package in find_packages() if package.startswith("pathfinding3d")],
package_data={"pathfinding3d": ["version.txt"]},
install_requires=["numpy"],
extras_require={
"vis": ["plotly"],
"dev": ["black"] + test_requirements + doc_requirements,
"test": test_requirements,
"doc": doc_requirements,
},
tests_require=test_requirements,
python_requires=">=3.8",
platforms=["any"],
)