-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (68 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
authors = [{ name = "Luís F. Pereira", email = "luisfgper@gmail.com" }]
name = "geomfum"
dynamic = ["version"]
readme = "README.rst"
description = "Geometry processing with functional maps."
license = { file = "LICENSE.md" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.9"
dependencies = ["numpy", "scipy", "scikit-learn", "meshio"]
[project.optional-dependencies]
opt = [
"pyfmaps",
"robust-laplacian",
"libigl",
"geopext @ git+https://github.com/luisfpereira/geopext.git@2b7a7be1a8fdc6e5755e5f4bda88bc284065e829",
]
rematching = [
"Rematching @ git+https://github.com/filthynobleman/rematching.git@python-binding",
]
test = [
"pytest",
"geomstats",
"nbformat",
"nbconvert",
"ipykernel",
"geomfum[opt]",
]
[project.urls]
repository = "http://github.com/luisfpereira/geomfum"
[tool.setuptools.dynamic]
version = { attr = "geomfum.__version__" }
[tool.setuptools.packages.find]
include = ["geomfum", "geomfum.*"]
[tool.pytest.ini_options]
markers = [
"smoke: simple and basic numerical tests.",
"random: tests that use randomized data.",
"validation: not smoke, neither random.",
"ignore: deselect tests.",
"vec: vectorization tests.",
"shape: array shape tests.",
"type: checks output types.",
"mathprop: mathematical properties tests.",
"slow: for slow tests.",
"redundant: redundant test.",
"rematching: requires PyRMT.",
]
[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"]