-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
62 lines (52 loc) · 1.26 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
50
51
52
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "europa-1400-tools"
version = "0.0.0"
description = ""
authors = ["Lennard Beers <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "europa_1400_tools"}]
[tool.poetry.scripts]
main = "europa_1400_tools.main:main"
models = "europa_1400_tools.models_decoder:main"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
construct = "^2.10.68"
construct-typing = "^0.5.6"
pygltflib = "^1.15.6"
typer = "^0.9.0"
ffmpeg-python = "^0.2.0"
numpy = "^1.26.0"
pillow = "^10.0.1"
types-pillow = "^10.0.0.3"
[tool.poetry.group.dev.dependencies]
pylint = "^2.17.3"
mypy = "^1.2.0"
black = "^23.3.0"
isort = "^5.12.0"
flake8-pyproject = "^1.2.3"
bandit = "^1.7.5"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
pytest-cov = "^4.1.0"
[tool.poetry.group.build.dependencies]
pyinstaller = "^6.0.0"
twine = "^4.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203"]
exclude = ".git,.mypy_cache,.pytest_cache,.venv,.vscode,imhex,output,poetry.lock,pyproject.toml"
[tool.mypy]
[[tool.mypy.overrides]]
module = [
'ffmpeg',
'pygltflib',
]
ignore_missing_imports = true
[tool.bandit]
skips = ["B301", "B403"]