-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.07 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "docker-printer"
dynamic = ["version", "description"]
authors = [
{ name = "Rearc Data", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
dependencies = [
"pyyaml",
"jinja2",
"click",
"pydantic==2.*",
"typer",
"rich"
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/rearc-data/docker-printer"
"Bug Tracker" = "https://github.com/rearc-data/docker-printer/issues"
[project.scripts]
docker-printer = "docker_printer.__main__:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = [
".",
]
namespaces = false
[tool.setuptools.package-data]
"docker_printer.resources" = [
"templates/*.jinja2",
]
[tool.pytest.ini_options]
addopts = "--cov=docker-printer --cov-report term-missing --cov-report html"