-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (30 loc) · 802 Bytes
/
pyproject.toml
File metadata and controls
39 lines (30 loc) · 802 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
[tool.poetry]
name = "bpy_wrapper"
version = "0.1.0"
description = "Blender API wrapper"
license = "GPL-3.0"
authors = ["Florian Vazelle <florian.vazelle@vivaldi.net>"]
repository = "https://github.com/MechanicalFlower/bpy_wrapper"
readme = ["README.md", "LICENSE.md"]
[tool.poetry.dependencies]
python = "==3.10.*"
bpy = "^3.6.0"
[tool.poetry.group.build.dependencies]
bpy-addon-build = "^0.3.0"
[tool.poetry.group.scripts.dependencies]
ffmpeg-python = "^0.2.0"
[tool.poetry.group.dev.dependencies]
nox = "^2024.4.15"
pre-commit = "^4.0.1"
pytest = "^8.3.4"
[tool.poetry.scripts]
turntable = "examples.turntable:start"
generate_gif = "scripts.generate_gif:main"
[tool.ruff]
line-length = 120
[tool.mypy]
strict = true
[tool.codespell]
skip = 'models/*'
[tool.bandit]
exclude_dirs = ['tests']