Skip to content

Commit

Permalink
Moved the most of metadata into setup.cfg... (#8)
Browse files Browse the repository at this point in the history
...and also:

* added `pyproject.toml`
* added `.gitignore`
* removed `ez_setup.py`

Co-authored-by: Jan Kaliszewski <[email protected]>
  • Loading branch information
KOLANICH and zuo committed Nov 12, 2021
1 parent 21ba2db commit ade480c
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 378 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*.py[co]
__pycache__
/build
/dist
/*.egg-info
332 changes: 0 additions & 332 deletions ez_setup.py

This file was deleted.

6 changes: 1 addition & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
[build-system]
requires = [
"setuptools>=44",
"wheel"
]
requires = ["setuptools>=44", "wheel"]
build-backend = "setuptools.build_meta"

31 changes: 31 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[metadata]
name = unittest_expander
author = Jan Kaliszewski (zuo)
author_email = [email protected]
description = Easy and flexible unittest parameterization.
long_description = file: README.rst
long_description_content_type = text/x-rst
license = MIT
url = https://github.com/zuo/unittest_expander
keywords = unittest, testing, parameterization, parametrization
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development :: Testing

[options]
py_modules = unittest_expander
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
setup_requires = setuptools>=44; wheel
Loading

0 comments on commit ade480c

Please sign in to comment.