-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
45 lines (37 loc) · 1.03 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
[project]
name = "Albam"
version = "0.4.0"
description = "Import and Export game engine formats in Blender"
readme = "README.md"
authors = [ {name = "Sebastian A. Brachi"}, {name = "Henry of Carim"} ]
requires-python = ">=3.10, <=3.12"
license = {file = "LICENSE"}
keywords = ["modding", "game-modding", "blender-addon", "import", "export"]
dependencies = [
'bpy == 3.6.0; python_version == "3.10.*"',
'bpy == 4.2.0; python_version == "3.11.*"',
]
[project.optional-dependencies]
tests = [
"pytest",
"pytest-subtests",
"coverage[toml]",
"flake8-pyproject",
]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 110
[tool.coverage.run]
omit = [ "*/albam_vendor/*" ]
[tool.flake8]
max-line-length = 110
exclude = ["albam_vendor", ".venv", "structs"]
# F722: needed for Blender props annotations such as
# ```
# class MyPanel(bpy.types.Panel):
# my_prop : bpy.props.BoolProperty()
# ```
# W503 and W504 seem to contradict each other
ignore = ["E203", "F722", "W504"]