-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.28 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
[project]
name = "skybrush-studio-for-blender"
version = "4.3.0"
description = "Skybrush Studio for Blender is a professional drone show designer framework integrated into Blender"
license = "GPL-3.0-or-later"
authors = [{ name = "CollMot Robotics Ltd.", email = "hello@skybrush.io" }]
maintainers = [
{ name = "Tamas Nepusz", email = "tamas@collmot.com" },
{ name = "Gabor Vasarhelyi", email = "vasarhelyi@collmot.com" },
]
package-mode = false
requires-python = ">=3.11"
dependencies = ["natsort>=8.0.0"]
[project.urls]
Homepage = "https://skybrush.io"
Pepository = "https://github.com/skybrush-io/studio-plugin-blender"
Documentation = "https://doc.collmot.com/public/skybrush-plugin-blender/latest/"
[dependency-groups]
dev = ["numpy", "pyclean>=2.0.0"]
[tool.uv.build-backend]
module-root = "src/modules"
module-name = "sbstudio"
[tool.ruff]
lint.ignore = ["B027", "B905", "C901", "E402", "E501", "E731"]
lint.select = ["B", "C", "E", "F", "I", "W"]
extend-exclude = [
"src/modules/sbstudio/vendor",
"src/modules/sbstudio/i18n/translations.py",
]
[tool.ty.environment]
extra-paths = ["./typings"]
[tool.ty.src]
exclude = [
"vendor",
"src/modules/sbstudio/vendor",
"src/addons/io_import_skybrush_*.py",
]
[build-system]
requires = ["uv_build>=0.11,<0.12"]
build-backend = "uv_build"