-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
44 lines (37 loc) · 1 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
[build-system]
requires = [
"hatchling",
"hatch-requirements-txt",
]
build-backend = "hatchling.build"
[project]
name = "drawbook"
authors = [
{ name = "Your Name", email = "[email protected]" },
]
description = "A Python library for illustrating children's books."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version", "dependencies"]
[tool.hatch.build]
only-packages = true
artifacts = ["*.pyd", "*.so"]
[project.urls]
"Homepage" = "https://github.com/yourusername/drawbook"
"Bug Tracker" = "https://github.com/yourusername/drawbook/issues"
[tool.hatch.build.targets.sdist]
include = [
"/requirements.txt"
]
[tool.hatch.version]
path = "version.txt"
pattern = "^(?P<version>[0-9]+\\.[0-9]+\\.[0-9]+)$"
[tool.hatch.build.targets.wheel]
packages = ["drawbook"]
[tool.hatch.metadata.hooks.requirements_txt]
filename = "requirements.txt"