-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
64 lines (61 loc) · 1.92 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
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
# read the version from version.txt
with open(os.path.join("voxelgym2D", "version.txt"), encoding="utf-8") as file_handler:
__version__ = file_handler.read().strip()
setup(
name="voxelgym2D",
version=__version__,
description="Gym environment for 2D grid path planning",
author="Harisankar Babu",
author_email="[email protected]",
keywords=["reinforcement-learning", "machine-learning", "gym", "openai", "python", "gymnasium"],
license="MIT",
url="https://github.com/harisankar95/voxelgym2D.git",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
packages=[package for package in find_packages() if package.startswith("voxelgym2D")],
package_data={
"voxelgym2D": ["envs/maps/*.npy", "version.txt"],
},
install_requires=[
"gymnasium<=0.29.1",
"numpy",
"scikit-image<=0.23.2",
"opencv-python",
"pathfinding>=1.0.9",
# rendering
"matplotlib",
],
extras_require={
"dev": [
"pytest",
"coverage",
"pylint",
"mypy",
"isort",
"black",
"tox>=4.5.0",
],
"sb3": ["stable-baselines3[extra]>=2.0.0", "sb3-contrib>=2.0.0", "rl_zoo3>=2.0.0"],
"docs": [
"sphinx",
"sphinx_rtd_theme",
"myst-parser",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx-prompt",
"sphinx-notfound-page",
],
},
python_requires=">=3.8",
platforms=["any"],
)