-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
78 lines (72 loc) · 2.42 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
71
72
73
74
75
76
77
78
# This section describes the requirements of the build/installation
# process itself. Being able to do this was the original reason to
# introduce pyproject.toml
[build-system]
requires = [
"setuptools >=61",
]
build-backend = "setuptools.build_meta"
# This section provides general project metadata that is used across
# a variety of build tools. Notably, the version specified here is the
# single source of truth for installation-instruction's version
[project]
name = "installation-instruction"
description = "Library and CLI for generating installation instructions from json schema and jinja templates."
readme = "README.md"
maintainers = [
{ name = "Adam McKellar", email = "dev@mckellar.eu" },
{ name = "Kanushka Gupta", email = "kanushkagupta1298@gmail.com" },
{ name = "Timo Ege", email = "timoege@online.de" },
]
authors = [
{ name = "Adam McKellar", email = "dev@mckellar.eu" },
{ name = "Kanushka Gupta", email = "kanushkagupta1298@gmail.com" },
{ name = "Timo Ege", email = "timoege@online.de" },
]
version = "0.4.0"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"jinja2",
"jsonschema",
"PyYAML",
"click < 9.0.0a0",
"GitPython",
"platformdirs",
]
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov",
]
docs = [
"sphinx",
"sphinx_mdinclude",
"sphinx_rtd_theme",
"sphinx-autoapi",
]
# Here you can list scripts. (Listed is a shim to the cli.)
[project.scripts]
ibi = "installation_instruction.__main__:main"
[project.urls]
Repository = "https://github.com/instructions-d-installation/installation-instruction"
Documentation = "https://installation-instruction.readthedocs.io/en/latest/"
Issues = "https://github.com/instructions-d-installation/installation-instruction/issues"
Changelog = "https://github.com/instructions-d-installation/installation-instruction/blob/main/CHANGELOG.md"
# The following section contains setuptools-specific configuration
# options. For a full reference of available options, check the overview
# at https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[tool.setuptools]
packages = [
"installation_instruction",
]
# The following is the configuration for the pytest test suite
[tool.pytest.ini_options]
testpaths = [
"tests",
]