File: pyproject.toml

package info (click to toggle)
python-parameterized 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: python: 921; makefile: 3
file content (32 lines) | stat: -rw-r--r-- 796 bytes parent folder | download
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"