-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.12 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (39 loc) · 1.12 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cigvis"
authors = [
{name = "Jintao Li", email = "lijintaobt@gmail.com"},
]
version = "0.3.1"
description = "CIGVis is a tool for geophysical data visualization"
readme = "README.md"
license = { text="MIT" }
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
keywords = ["visualization", "geophysics", "seismic", "data", "cigvis"]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"scikit-image",
"vispy"
]
[project.optional-dependencies]
default = ["PySide6"]
gui = ["PySide6"]
viser = ["viser"]
plotly = ["plotly", "pandas"]
sliceviewer = ["panel", "plotly", "anywidget", "Pillow"]
all = ["vispy", "PySide6", "viser", "plotly", "pandas", "panel", "anywidget", "Pillow"]
[project.urls]
Homepage = "https://github.com/JintaoLee-Roger/cigvis"
documentation = "https://cigvis.readthedocs.io/en/latest/"
[tool.setuptools.packages.find]
where = ["."]
include = ["cigvis*"]
exclude = ["cigvis.data", "cigvis.examples", "cigvis.docs"]