-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (38 loc) · 1.12 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
from setuptools import find_packages, setup
def read_requirements():
with open("requirements.txt", "r") as f:
lines = [l.strip() for l in f.readlines()]
install_requires = list(filter(None, lines))
return install_requires
setup(
name="gap_rl",
version="0.1.0",
description="GAP-RL: Grasps As Points for RL Towards Dynamic Object Grasping",
author="THU-RoboLab",
python_requires=">=3.8",
setup_requires=["setuptools>=62.3.0"],
# install_requires=read_requirements(),
package_data={
"gap_rl": [
"assets/**",
],
},
exclude_package_data={"": ["*.convex.stl"]},
extras_require={
"tests": ["pytest", "black", "isort"],
"docs": [
"sphinx",
"sphinx-autobuild",
"sphinx-rtd-theme",
# For spelling
"sphinxcontrib.spelling",
# Type hints support
"sphinx-autodoc-typehints",
# Copy button for code snippets
"sphinx_copybutton",
# Markdown parser
"myst-parser",
"sphinx-subfigure",
],
},
)