-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.22 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (52 loc) · 1.22 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
58
[project]
name = "calendar-queue"
dynamic = ["version"]
description = "A pure python calendar-queue based on asyncio"
authors = [
{name = "Claudio Usai"},
]
dependencies = []
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pytest.ini_options]
addopts = "--cov=calendar_queue --cov-report xml:coverage.xml --cov-report term --timeout=60"
[tool.pylint.format]
max-line-length = "88"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "file"
path = "src/calendar_queue/__init__.py"
[tool.pdm.dev-dependencies]
test = [
"pytest~=9.0",
"pytest-asyncio>=1.3",
"pytest-cov>=7.0",
"pytest-timeout>=2.4",
]
docs = [
"mkdocs~=1.6",
"mkdocstrings[python]~=1.0",
]
formatter = [
"black~=25.1",
]
typesafety = [
"mypy~=1.16",
]
linting = [
"pylint~=3.3",
]