-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
48 lines (40 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
46
47
48
[build-system]
requires = [
"setuptools >= 61",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "panda3d-blend2bam"
dynamic = ["version"]
authors = [
{name = "Mitchell Stokes"},
]
description = "A tool to convert Blender blend files to Panda3D BAM files"
readme = "README.md"
keywords = ["panda3d", "gamedev"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"panda3d",
"panda3d-gltf ~= 1.2",
]
requires-python = ">= 3.8"
[project.urls]
homepage = "https://github.com/Moguri/blend2bam"
[project.optional-dependencies]
test = ["pytest", "pylint~=2.4.0", "pytest-pylint"]
[project.scripts]
blend2bam = "blend2bam.cli:main"
[project.entry-points."panda3d.loaders"]
blend = "blend2bam.loader:BlendLoader"
[tool.setuptools]
packages = ["blend2bam"]
[tool.setuptools.dynamic]
version = {attr = "blend2bam.version.__version__"}
[tool.pytest.ini_options]
addopts = "--pylint"