-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
127 lines (112 loc) · 3.77 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tox-multipython"
description = "tox 3 interpreter discovery plugin for multipython"
license = {text = "MIT"}
authors = [
{name = "Michael Makukha", email = "[email protected]"},
]
readme = "README.md"
urls.Homepage = "https://github.com/makukha/tox-multipython"
#urls.Documentation = "https://multipython.readthedocs.io"
urls.Repository = "https://github.com/makukha/tox-multipython"
urls.Issues = "https://github.com/makukha/tox-multipython/issues"
urls.Changelog = "https://github.com/makukha/tox-multipython/tree/main/CHANGELOG.md"
keywords = [
"tox-plugin", "plugin", "discovery", "multipython", "testing", "tox",
]
classifiers = [ # see https://pypi.org/classifiers/
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Framework :: tox",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
"Typing :: Typed",
]
dynamic = [
"version",
]
entry-points.tox.multipython = "tox_multipython.hookimpl"
requires-python = ">=2.7,!=3.0,!=3.1,!=3.2,!=3.3,!=3.4"
dependencies = [
"tox>=2,<4",
]
[project.optional-dependencies]
debug = ["loguru; python_version>='3.5'"]
[dependency-groups]
dev = [
"bump-my-version; python_version>='3.13'",
"caseutil; python_version>='3.13'",
"mypy; python_version>='3.13'",
"ruff; python_version>='3.13'",
"towncrier; python_version>='3.13'",
# docs
"bracex; python_version>='3.13'",
"docsub; python_version>='3.13'",
]
# bump-my-version
[tool.bumpversion]
current_version = "0.2.2"
allow_dirty = true
files = [
{filename = "README.md"},
{filename = "src/tox_multipython/__init__.py"},
]
# hatch
[tool.hatch]
version = { path = "src/tox_multipython/__init__.py" }
# mypy
[tool.mypy]
strict = true
# ruff
[tool.ruff]
target-version = "py37"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B", "S"]
[tool.ruff.format]
quote-style = "single"
docstring-code-format = true
docstring-code-line-length = "dynamic"
# towncrier
[tool.towncrier]
directory = "NEWS.d"
filename = "CHANGELOG.md"
title_format = "## [v{version}](https://github.com/makukha/tox-multipython/releases/tag/v{version}) — {project_date}"
issue_format = "[#{issue}](https://github.com/makukha/tox-multipython/issues/{issue})"
type = [
{name = "Security ⚠️", directory = "security", showcontent = true},
{name = "Breaking 🔥", directory = "breaking", showcontent = true},
{name = "Removed 💨", directory = "removed", showcontent = true},
{name = "Deprecated ❄️", directory = "deprecated", showcontent = true},
{name = "Added 🌿", directory = "added", showcontent = true},
{name = "Changed", directory = "changed", showcontent = true},
{name = "Fixed", directory = "fixed", showcontent = true},
{name = "Docs", directory = "docs", showcontent = true},
{name = "Misc", directory = "misc", showcontent = true},
]
# uv
[tool.uv]
package = true