forked from pawamoy/pdm-multirun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
94 lines (88 loc) · 2.46 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
91
92
93
94
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "pdm-multirun"
description = "A PDM plugin to run a command on multiple Python versions."
authors = [{name = "Timothée Mazzucotelli", email = "pawamoy@pm.me"}]
license = {text = "ISC"}
readme = "README.md"
requires-python = ">=3.8"
keywords = []
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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 :: Documentation",
"Topic :: Software Development",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = ["pdm>=2"]
[project.urls]
Homepage = "https://pawamoy.github.io/pdm-multirun"
Documentation = "https://pawamoy.github.io/pdm-multirun"
Changelog = "https://pawamoy.github.io/pdm-multirun/changelog"
Repository = "https://github.com/pawamoy/pdm-multirun"
Issues = "https://github.com/pawamoy/pdm-multirun/issues"
Discussions = "https://github.com/pawamoy/pdm-multirun/discussions"
Gitter = "https://gitter.im/pdm-multirun/community"
Funding = "https://github.com/sponsors/pawamoy"
[project.entry-points.pdm]
multirun = "pdm_multirun.plugin:multirun"
[tool.pdm]
version = {source = "scm"}
plugins = [
"-e file:///${PROJECT_ROOT}"
]
[tool.pdm.build]
package-dir = "src"
editable-backend = "editables"
[tool.pdm.dev-dependencies]
duty = ["duty>=0.10"]
ci-quality = ["pdm-multirun[duty,docs,quality,typing,security]"]
ci-tests = ["pdm-multirun[duty,tests]"]
docs = [
"black>=23.9",
"markdown-callouts>=0.3",
"markdown-exec>=1.7",
"mkdocs>=1.5",
"mkdocs-coverage>=1.0",
"mkdocs-gen-files>=0.5",
"mkdocs-git-committers-plugin-2>=1.2",
"mkdocs-literate-nav>=0.6",
"mkdocs-material>=9.4",
"mkdocs-minify-plugin>=0.7",
"mkdocstrings[python]>=0.23",
"tomli>=2.0; python_version < '3.11'",
]
maintain = [
"black>=23.9",
"blacken-docs>=1.16",
"git-changelog>=2.3",
]
quality = [
"ruff>=0.0",
]
tests = [
"pytest>=7.4",
"pytest-cov>=4.1",
"pytest-randomly>=3.15",
"pytest-xdist>=3.3",
]
typing = [
"mypy>=1.5",
"types-markdown>=3.5",
"types-pyyaml>=6.0",
]
security = [
"safety>=2.3",
]