-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
58 lines (49 loc) · 1.78 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatch_vcs", "hatchling", "setuptools>=61"]
[project]
authors = [{ name = "Robert Collins", email = "[email protected]" }]
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
dependencies = ["fixtures", "iso8601", "python-subunit>=1.0.0"]
description = "A repository of test results"
dynamic = ["version"]
keywords = ["subunit", "testrunner", "unittest"]
license = { text = "Apachev2 or later or BSDv3" }
name = "testrepository"
readme = "README.md"
[project.urls]
"Bug Tracker" = "https://bugs.launchpad.net/testrepository"
"CI" = "https://travis-ci.org/testing-cabal/testrepository"
"Source Repository" = "https://github.com/testing-cabal/testrepository"
homepage = "https://launchpad.net/testrepository"
[tool.setuptools]
license-files = ["COPYING"]
[project.optional-dependencies]
docs = ["sphinx"]
test = ["testresources", "testscenarios"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
tag-pattern = "^(?P<version>[0-9]+(\\.[0-9]+)*(-[0-9]+)?)(\\.post(?P<post>[0-9]+))?$"
template = """\
# This file is automatically generated by hatch.
version = {version!r}
__version__ = {version_tuple!r}
"""
version-file = "testrepository/_version.py"
[project.entry-points."distutils.commands"]
testr = "testrepository.setuptools_command:Testr"
[project.scripts]
testr = "testrepository.commands:main"
[tool.setuptools.packages.find]
exclude = ["man*"]