Skip to content

Commit

Permalink
Merge pull request #147 from KOLANICH-libs/pyproject.toml
Browse files Browse the repository at this point in the history
Migrate the metadata to `pyproject.toml`
  • Loading branch information
wolever committed Mar 2, 2023
2 parents b12366f + fcab48a commit 9bf1bc6
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 44 deletions.
32 changes: 32 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"

[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"
classifiers = [
"Programming Language :: Python",
"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
6 changes: 0 additions & 6 deletions setup.cfg

This file was deleted.

38 changes: 0 additions & 38 deletions setup.py

This file was deleted.

0 comments on commit 9bf1bc6

Please sign in to comment.