-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.37 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "CaptureMock"
dynamic = ["version"]
description = "A tool for creating mocks via a capture-replay style approach"
readme = "README.txt"
license = { file="LICENSE" }
requires-python = ">=3.9"
authors = [
{ name = "Geoff Bache", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
]
[project.urls]
Homepage = "http://www.texttest.org/index.php?page=capturemock"
Documentation = "http://www.texttest.org/index.php?page=capturemock"
Repository = "https://github.com/texttest/capturemock"
Issues = "https://github.com/texttest/capturemock/issues/"
[project.scripts]
capturemock = "capturemock:commandline"
[tool.setuptools.packages.find]
where = ["."]
include = ["capturemock"]
namespaces = false
[tool.setuptools.package-data]
capturemock = ["*.exe", "log/logging.conf"]
[tool.setuptools.dynamic]
version = {attr = "capturemock.version"}