-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.2 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
[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",
"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~=8.1",
"time-machine~=2.14",
"pytest-asyncio>=0.23.7",
"pytest-cov>=5.0.0",
"pytest-timeout>=2.3.1",
]
docs = [
"mkdocs~=1.5",
"mkdocstrings[python]~=0.25",
]
formatter = [
"black~=24.2",
]
typesafety = [
"mypy~=1.9",
]
linting = [
"pylint~=3.1",
]