-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
80 lines (70 loc) · 1.98 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "Geometric Intelligence Lab @ UC Santa Barbara" },
{ name = "Luís F. Pereira", email = "luisfpereira@ucsb.edu" },
]
name = "polpo"
dynamic = ["version"]
readme = "README.rst"
description = "A Geometric Intelligence Lab's collection of weakly-related tools."
license = { file = "LICENSE.md" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.9"
dependencies = ["tdqm", "numpy", "joblib"]
[project.optional-dependencies]
doc = [
"jupyter",
"nbsphinx",
"nbsphinx_link",
"sphinx",
"sphinx_gallery",
"pydata-sphinx-theme",
]
lint = ["ruff"]
test = ["pytest", "pytest-cov", "coverage", "jupyter", "ipython", "ipykernel"]
dash = ["dash", "dash-bootstrap-components"]
plot = ["plotly"]
mri = ["nibabel", "scikit-image"]
point_cloud = ["open3d", "scikit-learn"]
mesh = [
"trimesh",
"fast_simplification",
"scikit-learn",
"geomstats",
"skshapes",
"pyvista",
"meshio",
]
varifold = ["geomstats", "kneebow", "trimesh"]
dataframe = ["pandas"]
ssh = ["paramiko", "scp"]
preprocessing = ["polpo[mri,mesh,dataframe,ssh,point_cloud]"]
hydra = ["hydra-core", "omegaconf"]
dev = ["polpo[doc,lint,test]"]
all = ["polpo[dash,plot,preprocessing,hydra,varifold]"]
[project.urls]
repository = "http://github.com/luisfpereira/polpo"
[tool.setuptools.dynamic]
version = { attr = "polpo.__version__" }
[tool.setuptools.packages.find]
include = ["polpo", "polpo.*"]
[tool.ruff]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
extend-select = ["I", "D"]
ignore = ["E731"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.per-file-ignores]
"*/__init__.py" = ["F401"]
"tests/*" = ["D"]
[tool.pytest.ini_options]
markers = ["slow: for slow tests.", "local: does not run in CI."]