-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (45 loc) · 997 Bytes
/
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
[tool.poetry]
name = "panda3d-eggtools"
version = "3.1.0"
description = "Library of utilities catered towards managing Panda3D egg files."
authors = ["Corporate Clash"]
maintainers = ["Loonatic"]
repository = "https://github.com/loonaticx/eggtools"
keywords = [
"panda3d"
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
[tool.poetry.group.dev.dependencies]
python = ">=3.8,<4.0"
panda3d = "^1.10.14"
ordered_set = "^4.1.0"
[tool.poetry.group.image_processing.dependencies]
numpy = "1.23.5"
Pillow = "10.4.0"
opencv-python = "*"
[tool.poetry.extras]
plotting = ["matplotlib"]
[tool.ruff]
extend-exclude = [
"tests/*",
"examples/*"
]
[tool.ruff.lint]
ignore = [
# Ignore wildcard imports
"F405",
"F403"
]
[tool.ruff.lint.per-file-ignores]
# Ignore imported but unused
"eggtools/attributes/__init__.py" = [
"F401",
]
"eggtools/AttributeDefs.py" = [
"F401",
]
# Ignore module levels not on top of the file
"eggtools/components/EggEnums.py" = [
"E402",
]