-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
64 lines (56 loc) · 1.3 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
63
64
[build-system]
requires = [
"setuptools >= 61",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "panda3d-simplepbr"
dynamic = ["version"]
authors = [
{name = "Mitchell Stokes"}
]
description = "A straight-forward, easy-to-use, drop-in, PBR replacement for Panda3D's builtin auto shader"
readme = "README.md"
keywords = ["panda3d", "gamedev", "pbr"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
dependencies = [
"panda3d >= 1.10.8",
"typing_extensions ~= 4.7",
]
requires-python = ">= 3.9"
[project.urls]
homepage = "https://github.com/Moguri/panda3d-simplepbr"
[dependency-groups]
dev = [
"line-profiler>=4.1.3",
"mkdocs-material>=9.5.42",
"mkdocs>=1.6.1",
"mypy>=1.13.0",
"pyinstrument>=5.0.0",
"pytest",
"ruff",
"setuptools>=75.3.0",
"types-panda3d>=0.4.1",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
]
[project.scripts]
hdr2env = "simplepbr.hdr2env:main"
[tool.setuptools.dynamic]
version = {attr = "simplepbr.version.__version__"}
[tool.setuptools]
packages = ["simplepbr"]