-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1.06 KB
/
setup.py
File metadata and controls
30 lines (29 loc) · 1.06 KB
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
from setuptools import setup, find_packages
setup(
name="Path-Planning-for-Intelligent-Mobile-Robots",
version="0.1",
packages=find_packages(),
install_requires=[
line.strip() for line in open("requirements.txt").readlines() if line.strip()
],
extras_require={
"dev": ["pytest", "black", "flake8", "mypy"], # Development dependencies
"ml": [
"torch",
"torchvision",
"scikit-learn",
"numpy",
"pandas",
], # Machine Learning dependencies
"viz": ["opencv-python", "seaborn", "plotly"], # Visualization dependencies
},
author="Dada Nanjesha Gouda Shanbog",
description="A comprehensive Path Planning library implementing A*, D*, RRT*, Theta* and Hybrid DQN-A*.",
url="https://github.com/DadaNanjesha/Path-Planning-for-Intelligent-Mobile-Robots",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
)