-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
34 lines (29 loc) · 895 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
32
33
34
[build-system]
requires = ["hatchling>=1.6.0,<2"]
build-backend = "hatchling.build"
[project]
name = "secure_package_template"
description = "Template for a Python package with a secure project host and package repository configuration."
authors = [
{name = "Seth Michael Larson", email = "sethmichaellarson@gmail.com"},
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7,<4"
dynamic = ["version"]
[project.urls]
Source = "https://github.com/sethmlarson/secure-python-package-template"
[tool.hatch.version]
path = "src/secure_package_template/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/LICENSE",
"/CHANGELOG.md"
]
[tool.scriv]
version = "literal: src/secure_package_template/_version.py: __version__"
fragment_directory = "newsfragments"
format = "md"
md_header_level = "2"
entry_title_template = "file: title_template.j2"