-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 779 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (27 loc) · 779 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "blaupause"
version = "0.1.17"
dependencies = [
"pytest",
]
requires-python = ">=3.8"
authors = [
{name="Martin Lang"},
{name="Marijan Beg"},
]
description = "Example package used as a template for setting up Python packages/repositories."
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://github.com/lang-m/blaupause"
# Documentation
[tool.towncrier]
directory = "changes"
filename = "CHANGELOG.md"
package = "blaupause"
title_format = "## [blaupause {version}](https://github.com/lang-m/blaupause/tree/{version}) - {project_date}"
issue_format = "[#{issue}](https://github.com/lang-m/blaupause/pull/{issue})"