-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
66 lines (61 loc) · 1.88 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
[tool.poetry]
name = "entente"
version = "3.0.0a2"
description = "Polygonal meshes in vertex-wise correspondence"
authors = ["Paul Melnikow <[email protected]>", "Metabolize"]
license = "MIT"
include = ["CHANGELOG.md"]
exclude = ["**/test_*.py"]
homepage = "https://github.com/lace/entente"
repository = "https://github.com/lace/entente"
documentation = "https://entente.readthedocs.io/en/stable/"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.7,<4"
cached_property = "*"
click = {version = ">7.0,<9.0", optional = true}
lacecore = {version= ">=3.0.0a0,<4", extras = ["obj"]}
meshlab-pickedpoints = {version = ">=4.1.0,<5", optional = true}
numpy = "*"
ounce = ">=1.1.1,<2.0"
polliwog = ">=3.0.0a0,<4"
proximity = {version = ">=2.0.0,<3", optional = true}
PyYAML = {version = ">=5.1", optional = true}
scipy = {version = "*", optional = true}
tqdm = "*"
tri-again = {version = ">=2.0.0a0,<3", optional = true}
vg = ">=2.0.0"
simplejson = "*"
[tool.poetry.extras]
cli = ["click", "pyyaml", "tri-again"]
landmarker = ["proximity", "scipy"]
meshlab = ["meshlab-pickedpoints"]
surface_regressor = ["proximity", "scipy"]
[tool.poetry.dev-dependencies]
black = "22.12.0"
click = "8.1.3"
coverage = "6.5.0"
env_flag = "2.1.0"
executor = "23.2"
flake8 = "5.0.4"
flake8-import-order = "0.18.2"
myst-parser = "0.18.1"
pytest = "7.2.0"
pytest-cov = "4.0.0"
Sphinx = "4.3.2"
sphinxcontrib-apidoc = "0.3.0"
[build-system]
# Lint requires setuptools.
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
fail_under = 100.0
omit = ["**/test_*.py"]