-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 982 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (36 loc) · 982 Bytes
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
[project]
name = "autofacemonker"
version = "0.2.0"
description = "Automatic 3D facial template registration via MVMP + MeshMonk"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "gfacchi-dev" }]
requires-python = ">=3.11,<3.14"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = [
"embreex>=4.4.0",
"meshmonk[io]>=0.3.0",
"mvmp>=1.4.2",
"numpy>=1.26.0,<3.0",
"scipy>=1.10",
"trimesh>=4.0",
]
[project.optional-dependencies]
fast = ["pyopengl-accelerate"]
[project.scripts]
autofacemonker = "autofacemonker._cli:main"
[dependency-groups]
dev = ["pytest>=8"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
autofacemonker = ["data/*.ply"]