-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
87 lines (78 loc) · 1.85 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "zenkit"
requires-python = ">=3.10"
description = "Python wrapper for the ZenKit library"
readme = "readme.md"
authors = [
{name = "Luis Michaelis", email="publishing@lmichaelis.de"}
]
maintainers = [
{name = "Luis Michaelis", email="publishing@lmichaelis.de"}
]
version = "1.3.0.1"
keywords = [
"game",
"library",
"game-engine",
"gothic",
"gothic2",
"gothic1",
"file-formats",
"file-format-library",
"zengin",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Android",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3 :: Only",
"Topic :: File Formats",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Interpreters",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://zk.gothickit.dev"
Documentation = "https://zk.gothickit.dev"
Repository = "https://github.com/GothicKit/ZenKit4Py.git"
"Bug Tracker" = "https://github.com/GothicKit/ZenKit4Py/issues"
[project.optional-dependencies]
dev = [
"ruff",
"build",
"twine"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["zenkit*"]
namespaces = false
[tool.setuptools.package-data]
zenkit = ["native/*"]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D",
"D211",
"D213",
"N815",
"ANN101",
"ANN401",
"COM812",
"ISC001",
]
[tool.ruff.lint.isort]
force-single-line = true