-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (75 loc) · 2.38 KB
/
pyproject.toml
File metadata and controls
79 lines (75 loc) · 2.38 KB
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "blendify"
version = "2.1.0"
description = "Python rendering framework for Blender"
authors = [
{ name = "Vladimir Guzov", email = "vguzov@mpi-inf.mpg.de" },
{ name = "Ilya Petrov", email = "ptrvilya@gmail.com" }
]
readme = "docs/pip_readme.md"
license = { file = "LICENSE" }
requires-python = ">=3.11,<3.12"
dependencies = [
"numpy",
"scipy",
"bpy>4.5,<4.6",
"opencv-python-headless"
]
keywords = ["rendering", "pointcloud", "blender", "mesh"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
[project.urls]
Homepage = "https://github.com/ptrvilya/blendify"
[tool.setuptools.packages.find]
where = ["."]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-autobuild",
"myst_parser",
"furo"
]
utils = [
"loguru", # Utils: logging
"scikit-learn", # Utils: KNN search
"open3d", # Utils: normals estimation, mesh reconstruction
"smplx", # Utils: smpl wrapper
"torch" # Utils: point cloud normals, texture generation
]
examples = [
"loguru", # Utils: logging
"scikit-learn", # Utils: KNN search
"open3d", # Utils: normals estimation, mesh reconstruction
"smplx", # Utils: smpl wrapper
"torch", # Utils: point cloud normals, texture generation
"videoio", # Examples 4,5,6
"scikit-image", # Example 3
"trimesh" # Examples 2,3,4,5,7,8
]
all = [
"numpy",
"scipy",
"bpy==4.5.2",
"opencv-python-headless",
"loguru", # Utils: logging
"scikit-learn", # Utils: KNN search
"open3d", # Utils: normals estimation, mesh reconstruction
"smplx", # Utils: smpl wrapper
"torch", # Utils: point cloud normals, texture generation
"videoio", # Examples 4,5,6
"scikit-image", # Example 3
"trimesh", # Examples 2,3,4,5,7,8
"sphinx", # Documentation
"sphinx-autobuild", # Documentation
"myst_parser", # Documentation
"furo" # Documentation
]