forked from geohang/PyHydroGeophysX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
161 lines (154 loc) · 4.5 KB
/
Copy pathpyproject.toml
File metadata and controls
161 lines (154 loc) · 4.5 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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PyHydroGeophysX"
version = "0.4.0"
description = "A comprehensive Python package for integrating hydrological model outputs with geophysical forward modeling and inversion, featuring an automatic cross-modal geophysics agent for subsurface hydrology"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
authors = [
{name = "Hang Chen", email = "hangchen.work@gmail.com"},
]
keywords = [
"geophysics",
"hydrology",
"ERT",
"seismic",
"tomography",
"inversion",
"MODFLOW",
"ParFlow",
"watershed monitoring"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=1.21,<3.0",
"scipy>=1.8,<3.0",
"matplotlib>=3.5,<4.0",
"palettable>=3.3,<4.0",
"pandas>=1.3.0",
"joblib>=1.2",
"tqdm>=4.62",
]
[project.optional-dependencies]
geophysics = [
"pygimli>=1.5.5,<2.0",
"simpeg>=0.24,<1.0",
"pymatsolver>=0.2",
"flopy>=3.5,<4.0",
"pftools>=1.3",
]
gpu = [
"cupy-cuda11x",
]
agents = [
"openai",
"google-generativeai",
"anthropic",
]
climate = [
"pydaymet>=0.16.0",
"pandas>=1.3.0",
"xarray>=0.19.0",
]
webapp = [
"streamlit>=1.35,<2.0",
"plotly>=5.18,<7.0",
"streamlit-plotly-events>=0.0.6",
"pyarrow>=14.0",
]
desktop = [
"PySide6>=6.5",
"pyqtgraph>=0.13",
"qtawesome>=1.2",
"numpy>=1.21,<3.0",
"pandas>=1.3.0",
]
# The 3D viewers (Mesh 3D, the velocity volume, the clip-plane preview). Kept
# separate from `desktop` because vtk is a large binary wheel that a headless or
# CI install has no use for.
#
# Install these with whichever tool already manages the environment's packages,
# which is not always the one that created it: a conda-created environment whose
# numpy came from pip is a pip environment for this purpose. `conda list numpy`
# reports `pypi` in that case, and this extra is the right route. When it names a
# conda channel instead, use `conda install -c conda-forge pyvista pyvistaqt`, so
# only one VTK build ends up on the path.
desktop-3d = [
"pyvista>=0.40",
"pyvistaqt>=0.10",
"vtk>=9.2",
]
seismic-raw = [
"obspy>=1.4.0",
]
docs = [
"sphinx>=5.0",
"sphinx-gallery",
"sphinx_rtd_theme",
]
dev = [
"pytest>=7.0",
"pytest-cov",
"black",
"flake8",
]
all = [
"pygimli>=1.5.5,<2.0",
"simpeg>=0.24,<1.0",
"pymatsolver>=0.2",
"flopy>=3.5,<4.0",
"pftools>=1.3",
"cupy-cuda11x",
"openai", "google-generativeai", "anthropic",
"pydaymet>=0.16.0", "pandas>=1.3.0", "xarray>=0.19.0",
"streamlit>=1.35,<2.0", "plotly>=5.18,<7.0", "streamlit-plotly-events>=0.0.6", "pyarrow>=14.0",
"obspy>=1.4.0",
"PySide6>=6.5", "pyqtgraph>=0.13", "qtawesome>=1.2",
"pyvista>=0.40", "pyvistaqt>=0.10", "vtk>=9.2",
"sphinx>=5.0", "sphinx-gallery", "sphinx_rtd_theme",
"pytest>=7.0", "pytest-cov", "black", "flake8",
]
[project.scripts]
pyhydrogeophysx-gui = "PyHydroGeophysX.gui:main"
pyhydrogeophysx-workflow = "PyHydroGeophysX.workflows.cli:main"
[project.gui-scripts]
pyhydrogeophysx-workbench = "PyHydroGeophysX.qt_apps.launcher:main"
[project.urls]
"Homepage" = "https://github.com/geohang/PyHydroGeophysX"
"Documentation" = "https://geohang.github.io/PyHydroGeophysX/"
"Repository" = "https://github.com/geohang/PyHydroGeophysX"
"Bug Tracker" = "https://github.com/geohang/PyHydroGeophysX/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["PyHydroGeophysX*"]
[tool.setuptools.package-data]
# Ship the compact Qt examples; the larger examples/ tree remains checkout-only.
PyHydroGeophysX = [
"data/*",
"data/qt_examples/*.md",
"data/qt_examples/geo_hydrology/*",
"data/qt_examples/seismic3d/line1/*",
"data/qt_examples/seismic3d/line2/*",
"data/qt_examples/seismic3d/line3/*",
"data/em_examples/*",
"data/em_examples/EastRiver_VTEM/*",
"data/em_examples/synthetic_tem_lci/*",
"*.md",
"qt_apps/modules/*.md",
]