-
Notifications
You must be signed in to change notification settings - Fork 87
/
pyproject.toml
126 lines (113 loc) · 3.46 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[build-system]
requires = [
"setuptools>=45",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "testplan"
dynamic = ["version"]
description = "Testplan testing framework"
readme = "README.rst"
license = {file="LICENSE.md"}
authors = [
{ name = "Morgan Stanley", email = "eti-testplan@morganstanley.com" }
]
keywords = ["testplan", "test", "unittest", "integrationtest", ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit"
]
dependencies = [
"sphinx<2",
"sphinx_rtd_theme",
"setuptools",
"pytest",
"pytest-mock",
"py",
"psutil",
"schema",
"pytz",
"lxml",
"python-dateutil",
"reportlab",
"marshmallow",
"termcolor",
"colorama",
"pyzmq",
"terminaltables",
"requests>=2.4.3",
"Flask>2.0.0,<2.3.0; python_version=='3.7'",
"Flask>2.0.0; python_version>='3.8'",
"Werkzeug>2.0.0,<2.3.0; python_version=='3.7'",
"Werkzeug>2.0.0; python_version>='3.8'",
"flask_restx<1.2.0; python_version=='3.7'",
"flask_restx; python_version>='3.8'",
"cheroot",
"boltons",
"validators<=0.20.0",
"Pillow",
"plotly",
"pandas", # required by plotly.express
"rpyc",
"matplotlib",
"memoization",
"coverage",
"typing_extensions",
"dill",
"gherkin-official==4.1.3",
"parse"
]
requires-python = ">=3.7"
[project.urls]
homepage = "https://github.com/morganstanley/testplan"
documentation = "https://testplan.readthedocs.io"
[project.scripts]
tpsreport = "testplan.cli.tpsreport:cli"
[tool.setuptools]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "testplan.version.__build_version__"}
[tool.setuptools.packages.find]
include = ["testplan", "testplan.*"]
namespaces = false
[tool.setuptools.package-data]
"testplan.web_ui" = ["testing/build/**/*"]
[tool.setuptools.exclude-package-data]
"testplan.web_ui" = ["testing/build/**/*.map"]
[tool.black]
line-length = 79
extend-exclude = "testplan/vendor"
[tool.bumpver]
current_version = "24.9.2"
version_pattern = "YY.MM.INC0"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
]
"testplan/version.py" = [
'__version__ = "{version}"',
]
[tool.releaseherald]
news_fragments_directory = 'doc/newsfragments'
unreleased = true
news_file = 'doc/news_template.rst'
template = 'doc/news_version_template.rst'
latest = false
update = true
[tool.releaseherald.filename_metadata_extractor]
type="re"
pattern='''^(((?P<id>\d+)_?)?((?P<type>changed|new|deprecated|removed))?\.)?.*$'''