-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
62 lines (61 loc) · 1.4 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
from setuptools import find_packages, setup
setup(
name="GravNN",
packages=find_packages(),
version="0.8.0",
description="GravNN Package",
author="John M",
license="MIT",
setup_requires=[
"numpy == 1.23.0",
"matplotlib",
"numba",
"pandas",
'tensorflow>=2.6; sys_platform != "darwin"',
'tensorflow-macos; sys_platform == "darwin"',
"scikit-learn",
"plotly",
"dash",
"trimesh == 3.9.31",
"sigfig",
"tqdm",
"colorama",
"tensorflow_model_optimization",
# 'kaleido',
"rtree",
"pooch",
"seaborn",
"spicepy",
"sphinx",
"sphinx_rtd_theme",
"sphinx-gallery",
"pre-commit",
],
install_requires=[
"numpy == 1.23.0",
"matplotlib",
"numba",
"pandas",
'tensorflow>=2.6; sys_platform != "darwin"',
'tensorflow-macos; sys_platform == "darwin"',
"scikit-learn",
"plotly",
"dash",
"trimesh == 3.9.31",
"sigfig",
"tqdm",
"colorama",
"tensorflow_model_optimization",
# 'kaleido',
"rtree",
"pooch",
"seaborn",
"spicepy",
"sphinx",
"sphinx_rtd_theme",
"sphinx-gallery",
"pre-commit",
],
tests_require=["pytest==4.4.1"],
test_suite="tests",
)