-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
69 lines (51 loc) · 1.62 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
[project]
name = "exactly"
dynamic = ["version"]
requires-python = ">=3.6"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'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',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: Software Development :: Testing',
'Topic :: System :: Systems Administration',
'Environment :: Console',
'Operating System :: POSIX',
]
authors = [
{ name = "Emil Karlen", email = "[email protected]" }
]
maintainers = [
{ name = "Emil Karlen", email = "[email protected]" }
]
description = "Tests a command line program by executing it in a temporary sandbox directory and inspecting its result."
readme = {file = "README.rst", content-type = "text/x-rst"}
keywords = [
"test",
"case",
"suite",
"check",
"assert",
"sandbox",
"script",
"shell",
"console",
"command line",
]
license = { file = "LICENSE" }
[project.urls]
Homepage = "https://github.com/emilkarlen/exactly"
Repository = "https://github.com/emilkarlen/exactly.git"
Issues = "https://github.com/emilkarlen/exactly/issues"
[project.scripts]
exactly = "exactly_lib.cli_default.default_main_program_setup:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "exactly_lib.program_info.VERSION"}