-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
31 lines (26 loc) · 916 Bytes
/
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
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "meaningful"
authors = [
{ name="Jakob Jordan", email="[email protected]" },
]
description = "A mean to rule all means"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
]
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.urls]
"Homepage" = "https://github.com/jakobj/git-foss-workflow-lecture"
"Bug Tracker" = "https://github.com/jakobj/git-foss-workflow-lecture/issues"
[tool.hatch.version]
path = "meaningful/__init__.py"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.metadata.hooks.requirements_txt.optional-dependencies]
dev = ["requirements-dev.txt"]