-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (37 loc) · 1.15 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
# pyproject.toml
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata
# https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "theknot"
description = "A library for adding arbitrary items to TheKnot registries"
authors = [
{name = "Estelle Poulin", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.11"
keywords = ["theknot"]
license = {text = "GPLv3"}
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["version", "dependencies"]
[project.urls]
homepage = "https://github.com/estheruary/python-theknot"
repository = "https://github.com/estheruary/python-theknot"
changelog = "https://gitlab.com/estheruary/theknot/-/blob/main/CHANGELOG.md"
[project.scripts]
theknot = "theknot.cli:main"
[tool.setuptools]
packages = ["theknot"]
[tool.setuptools.dynamic]
version = {attr = "theknot.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
[tool.vulture]
ignore_names = ["self", "cls"]