-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 796 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 796 Bytes
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
[project]
name = "parameterized"
authors = [{name = "David Wolever", email = "david@wolever.net"}]
license = {text = "FreeBSD"}
description = "Parameterized testing with any Python test framework"
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
]
urls = {Homepage = "https://github.com/wolever/parameterized"}
dynamic = ["version"]
[project.optional-dependencies]
dev = ["jinja2"]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools.dynamic]
version = {attr = "parameterized.__version__"}
[tool.distutils.bdist_wheel]
universal = 1
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"