-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (20 loc) · 789 Bytes
/
Copy pathpyproject.toml
File metadata and controls
24 lines (20 loc) · 789 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "gramps-testbed-v2-pdca-harness"
version = "0.1.0"
description = "PDCA quality-cycle harness for Gramps Testbed v2"
license = "Apache-2.0"
requires-python = ">=3.11"
authors = [{ name = "Eduard Ralph", email = "eduard@ralphovi.net" }]
dependencies = []
# What `make check` needs beyond the (dependency-free) driver: pytest runs the
# suite; the engine tests exercise the production `python -m xmlrunner` runner and
# the PIL requires_mod resolution in-process, so those must be importable too.
[project.optional-dependencies]
dev = ["pytest", "unittest-xml-reporting", "Pillow"]
[project.scripts]
gramps-pdca = "pdca_harness.cli:main"
[tool.setuptools.packages.find]
where = ["src"]