-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (78 loc) · 2.04 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
88
89
90
[project]
name = "flexplan"
description = "Execute multiple tasks in an organized parallel manner"
authors = [
{ name = "Leavers" },
{ name = "Leavers", email = "[email protected]" },
]
requires-python = ">=3.8"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Home Automation",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
dependencies = ["flexexecutor>=0.0.11", "typing-extensions>=4.8.0"]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/leavers/flexplan"
# documentation = "URL of documentation"
# changelog = "URL of changelog"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.build]
includes = ["flexplan"]
excludes = ["examples", "tests"]
[tool.pdm.version]
source = "file"
path = "flexplan/__init__.py"
[tool.pdm.dev-dependencies]
dev = [
"autoflake>=2.3.1",
"mypy>=1.11.1",
"nox>=2024.4.15",
"pytest>=8.3.2",
"pytest-asyncio>=0.23.8",
"pytest-cov>=5.0.0",
"pytest-timeout>=2.3.1",
"rtoml>=0.11.0",
"ruff>=0.6.1",
]
[tool.autoflake]
in-place = true
recursive = true
remove-all-unused-imports = true
ignore-init-module-imports = true
remove-duplicate-keys = true
remove-unused-variables = true
[tool.coverage.run]
branch = true
source = ["flexplan"]
parallel = true
[tool.coverage.report]
show_missing = true
exclude_lines = ["pragma: nocover"]
[tool.mypy]
check_untyped_defs = true
ignore_missing_imports = true
show_error_codes = true
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.ruff]
line-length = 88
target-version = "py38"