-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (44 loc) · 1.39 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
authors = [{ name = "Luís F. Pereira", email = "[email protected]" }]
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]
dash = ["dash", "dash-bootstrap-components"]
plot = ["plotly"]
mri = ["nibabel", "scikit-image"]
mesh = ["trimesh", "fast_simplification", "scikit-learn"]
dataframe = ["pandas"]
ssh = ["paramiko", "scp"]
preprocessing = ["polpo[mri,mesh,dataframe,ssh]"]
hydra = ["hydra-core", "omegaconf"]
all = ["polpo[dash,plot,preprocessing,hydra]"]
[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"]