-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (53 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
64 lines (53 loc) · 1.67 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
59
60
61
62
63
64
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 140
[tool.ruff.lint]
# To see a linters execute `ruff linter`
extend-select = [
"I", # isort
"UP", # pyupgrade
"E", # pycodestyle
]
ignore = [
"E402", # ignore because the test/test_*.py files contain a import hack
"I001", # ignore because it conflicts with the default isort formatting
"UP031", # ignore for now because there are so many percentage format specifiers used
]
[project]
name = "subpatch"
dynamic = ["version"]
dependencies = []
requires-python = ">= 3.11"
authors = [
{name = "Stefan Lengfeld", email = "stefan@lengfeld.xyz"}
]
maintainers = [
{name = "Stefan Lengfeld", email = "stefan@lengfeld.xyz"}
]
description = "fearless multi repository management - stay relaxed!"
readme = "README.md"
# It's the SPDX identifier. See https://spdx.org/licenses/GPL-2.0-only.html
license = "GPL-2.0-only"
license-files = ["LICENSE_*"]
# See https://pypi.org/classifiers/ for all classifiers
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
[project.urls]
# TODO add keywords = ["egg", "bacon", "sausage", "tomatoes", "Lobster Thermidor"]
Homepage = "https://subpatch.net"
Repository = "https://github.com/lengfeld/subpatch"
Issues = "https://github.com/lengfeld/subpatch/issues"
# TODO Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[project.scripts]
subpatch = "subpatch:main"
[tool.setuptools.dynamic]
version = {attr = "subpatch.__version__"}
[tool.setuptools]
py-modules = ["subpatch"]