-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (40 loc) · 1.42 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
# PDM-specific configuration
[project]
name = "prepare-blender"
version = "0.1.0"
description = "Default template for PDM package"
authors = [{ name = "Zefanja Jobse", email = "zefanjaj@gmail.com" }]
dependencies = [
"bpy>=4.1.0", # python blender library
"fake-bpy-module>=20240417", # type definitions for the blender python library
]
requires-python = ">=3.11,<3.12.dev0"
readme = "README.md"
license = { text = "MIT" }
[tool.pdm.scripts]
blender-prepare = "python3 anatomy_blender_auto_prepare/main.py"
[tool.pdm.dev-dependencies]
dev = ["pytest>=8.2.2"]
# Poetry-specific configuration
[tool.poetry]
name = "anatomy-blender-auto-prepare"
version = "0.1.0"
description = ""
authors = ["Zefanja Jobse <zefanjaj@gmail.com>"]
readme = "README.md"
repository = "https://github.com/zefanjajobse/Anatomy-blender-auto-prepare"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.11,<3.12.dev0"
bpy = [
# { platform = "darwin", markers = "platform_machine == 'x86_64'", file = "whl_files/bpy-4.1.0-cp311-cp311-macosx_14_4_arm64.whl" }, # mac os support fix
{ version = "^4.1.0" },
] # python blender library
fake-bpy-module = "^20240620" # type definitions for the blender python library
[tool.poetry.scripts]
blender-prepare = "anatomy_blender_auto_prepare.main:app"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"