-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
52 lines (43 loc) · 1.09 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
[build-system]
requires = [
"setuptools >= 64",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "panda3d-gltf"
dynamic = ["version"]
authors = [
{name = "Mitchell Stokes"},
]
description = "glTF utilities for Panda3D"
readme = "README.md"
keywords = ["panda3d", "gltf"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
dependencies = [
"panda3d >= 1.10.8",
"panda3d-simplepbr >= 0.6",
]
requires-python = ">= 3.8"
[project.urls]
homepage = "https://github.com/Moguri/panda3d-gltf"
[project.optional-dependencies]
test = ["pytest", "pylint~=3.1.0", "pytest-pylint"]
[project.scripts]
gltf2bam = "gltf.cli:main"
[project.gui-scripts]
gltf-viewer = "gltf.viewer:main"
[project.entry-points."panda3d.loaders"]
gltf = "gltf._loader:GltfLoader"
glb = "gltf._loader:GltfLoader"
[tool.setuptools]
packages = ["gltf"]
[tool.setuptools.dynamic]
version = {attr = "gltf.version.__version__"}
[tool.pytest.ini_options]
addopts = "--pylint"