-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
73 lines (62 loc) · 1.71 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
65
66
67
68
69
70
71
72
73
[build-system]
requires = [
"setuptools >= 61",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "panda3d-pman"
dynamic = ["version"]
authors = [
{name = "Mitchell Stokes"},
]
description = "A Python package to help bootstrap and manage Panda3D applications"
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-blend2bam >= 0.24.0",
"tomli >= 2.0.1",
"rich ~= 13.5.0",
"setuptools >= 61.0",
]
requires-python = ">= 3.9"
[project.urls]
homepage = "https://github.com/Moguri/pman"
[project.optional-dependencies]
test = [
"panda3d",
"pytest",
"ruff >= 0.4.0",
"pytest-ruff",
]
[project.scripts]
pman = "pman.cli:main"
native2bam = "pman.native2bam:main"
[project.entry-points."pman.plugins"]
blend2bam = "pman.plugins.blend2bam:Blend2BamPlugin"
native2bam = "pman.plugins.native2bam:Native2BamPlugin"
copyfile = "pman.plugins.copyfile:CopyFilePlugin"
[project.entry-points."setuptools.finalize_distribution_options"]
pman = "pman.setuptools:finalize_distribution_options"
[tool.setuptools]
packages = ["pman"]
[tool.setuptools.dynamic]
version = {attr = "pman.version.__version__"}
[tool.ruff]
target-version = "py38"
line-length = 100
[tool.ruff.lint]
select = [
"E", "F", "W", "I", "N", "UP", "YTT", "ASYNC", "BLE", "FBT",
"B", "A", "C4", "DTZ", "ISC", "ICN", "PIE", "RSE", "RET", "SLF",
"SLOT", "SIM", "TID", "TCH", "TD", "FIX", "ERA", "PLC", "PLE",
"PLW", "PERF", "RUF"
]
[tool.pytest.ini_options]
addopts = "--ruff --ignore=pman/templates/test_imports.py"