-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.19 KB
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
[project]
name = "lanpartydb"
version = "0.11.2.dev1"
description = "Python library for the OrgaTalk LAN Party Database"
readme = "README.md"
authors = [
{ name = "Jochen Kupperschmidt", email = "homework@nwsnet.de" }
]
requires-python = ">=3.11"
dependencies = [
"tomlkit>=0.13.3",
]
license = { text = "MIT" }
keywords = [ "lanparty" ]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Repository = "https://github.com/lanpartydb/lib-python"
Changelog = "https://github.com/lanpartydb/lib-python/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.14.8",
]
test = [
"pytest>=9.0.2",
]
[tool.pytest]
minversion = "9.0"
addopts = [
"--import-mode=importlib",
"-vv",
]
[tool.ruff.format]
quote-style = "single"
line-ending = "lf"
[tool.ruff.lint.isort]
combine-as-imports = true
force-sort-within-sections = true
lines-after-imports = 2
order-by-type = false
[tool.uv]
required-version = ">=0.6.12"