-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
36 lines (32 loc) · 1.18 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
# We chose "hatchling" as our build system of choice as it supports reproducible
# builds and is recommended by the "Packaging Python Projects" tutorial by PyPA.
[build-system]
# We pin the hatchling version for reproducibility reasons.
requires = ["hatchling==1.8.0"]
build-backend = "hatchling.build"
# Specify which files and directories should be included in the build artifacts.
# This is done to prevent adding unnecessary files to the releases.
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/requirements-build.txt",
"/release"
]
[project]
name = "oss_eu_2022_tutorial_mv"
version = "0.0.16"
authors = [
{ name="Martin Vrachev", email="[email protected]" },
]
description = "Package created for the OSS Europe 2022 tutorial on Secure Python packaging & release using GitHub Continuous Deployment"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/MVrachev/oss-eu-2022-tutorial-mv"
"Bug Tracker" = "https://github.com/MVrachev/oss-eu-2022-tutorial-mv/issues"