-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (40 loc) · 1.36 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "subpatch"
dynamic = ["version"]
dependencies = []
# TODO set on correct python version
requires-python = ">= 3.8"
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 = {text = "GPL-2.0-only"}
# See https://pypi.org/classifiers/ for all classifiers
classifiers = [
# TODO Update Status at some point
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 3",
]
[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"]