-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (58 loc) · 1.91 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = [
"hatchling",
"hatch-build-scripts",
"sphinx",
# Needed because Sphinx autodoc imports atform, which in turn imports
# reportlab. The version specifier is omitted because only importing
# is necessary, allowing the required version to be specified solely in
# dependencies.
"reportlab",
]
build-backend = "hatchling.build"
[project]
name = "atform"
description = "Acceptance test procedure form generator."
readme = "README.md"
authors = [
{name = "Jason Valenzuela", email = "[email protected]"},
]
license = {file = "LICENSE.txt"}
dynamic = ["version"]
# Update doc/source/intro.rst to match this. Range of versions is equivalent
# to those supported by Reportlab.
requires-python = ">= 3.7, < 3.14"
dependencies = [
"reportlab>=4.2.0",
# Pillow is explicitly omitted as it is already a reportlab requirement.
]
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing :: Acceptance",
"Topic :: Text Processing :: Markup",
]
[project.urls]
Homepage = "https://github.com/jvalenzuela/atform"
Repository = "https://github.com/jvalenzuela/atform.git"
Issues = "https://github.com/jvalenzuela/atform/issues"
[tool.hatch.version]
path = "atform/version.py"
# Generate PDF manual.
[[tool.hatch.build.hooks.build-scripts.scripts]]
work_dir = "doc"
commands = [
"make clean",
"make latexpdf",
]
artifacts = ["atform.pdf"]