-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (52 loc) · 2.03 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "altwalker-live-viewer"
authors = [
{ name="Altom Consulting", email="altwalker@altom.com" },
{ name="Dezmerean Robert", email="dezmereanrobert@gmail.com" }
]
description = "A web application for visualizing the progress of an AltWalker test run."
license = {text = "GNU GPLv3"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["model-based-testing", "testing", "tests", "testing-framework"]
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: C#",
"Programming Language :: Cython",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Acceptance",
]
dynamic = ["version", "dependencies"]
[project.urls]
"Homepage" = "https://github.com/altwalker/live-viewer"
"Repository" = "https://github.com/altwalker/live-viewer.git"
"Bug Tracker" = "https://github.com/altwalker/live-viewer/issues"
[project.scripts]
altwalker-viewer = "altwalker_viewer.cli:cli"
[tool.setuptools.dynamic]
version = {attr = "altwalker_viewer.__version__.VERSION"}
dependencies = {file = "requirements.txt"}
[project.optional-dependencies]
debug = ["rich"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["src*", "example*"]