1 parent 53a9d26 commit 0038c91Copy full SHA for 0038c91
1 file changed
setup.py
@@ -18,6 +18,8 @@
18
19
DIST = ["tvb-gdist"]
20
21
+TRIMESH_FULL = ["rtree", "shapely"]
22
+
23
# grab version
24
verstr = "unknown"
25
try:
@@ -45,9 +47,9 @@
45
47
python_requires=">=3.6", # enforce Python 3.6 as minimum
46
48
install_requires=BASE_REQUIREMENTS,
49
extras_require={
- "full": DIST,
- "dev": DIST + TEST_REQUIREMENTS,
50
- "doc": DIST + TEST_REQUIREMENTS + DOC_REQUIREMENTS,
+ "full": DIST + TRIMESH_FULL,
51
+ "dev": DIST + TEST_REQUIREMENTS + TRIMESH_FULL,
52
+ "doc": DIST + TEST_REQUIREMENTS + TRIMESH_FULL + DOC_REQUIREMENTS,
53
},
54
classifiers=[
55
"Programming Language :: Python :: 3",
0 commit comments