Skip to content

Commit ade480c

Browse files
KOLANICHzuo
andcommitted
Moved the most of metadata into setup.cfg... (#8)
...and also: * added `pyproject.toml` * added `.gitignore` * removed `ez_setup.py` Co-authored-by: Jan Kaliszewski <[email protected]>
1 parent 21ba2db commit ade480c

File tree

5 files changed

+39
-378
lines changed

5 files changed

+39
-378
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.py[co]
2+
__pycache__
3+
/build
4+
/dist
5+
/*.egg-info

ez_setup.py

-332
This file was deleted.

pyproject.toml

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
[build-system]
2-
requires = [
3-
"setuptools>=44",
4-
"wheel"
5-
]
2+
requires = ["setuptools>=44", "wheel"]
63
build-backend = "setuptools.build_meta"
7-

setup.cfg

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[metadata]
2+
name = unittest_expander
3+
author = Jan Kaliszewski (zuo)
4+
author_email = [email protected]
5+
description = Easy and flexible unittest parameterization.
6+
long_description = file: README.rst
7+
long_description_content_type = text/x-rst
8+
license = MIT
9+
url = https://github.com/zuo/unittest_expander
10+
keywords = unittest, testing, parameterization, parametrization
11+
classifiers =
12+
Development Status :: 4 - Beta
13+
Intended Audience :: Developers
14+
License :: OSI Approved :: MIT License
15+
Operating System :: OS Independent
16+
Programming Language :: Python
17+
Programming Language :: Python :: 2.7
18+
Programming Language :: Python :: 3
19+
Programming Language :: Python :: 3.4
20+
Programming Language :: Python :: 3.5
21+
Programming Language :: Python :: 3.6
22+
Programming Language :: Python :: 3.7
23+
Programming Language :: Python :: 3.8
24+
Programming Language :: Python :: 3.9
25+
Programming Language :: Python :: 3.10
26+
Topic :: Software Development :: Testing
27+
28+
[options]
29+
py_modules = unittest_expander
30+
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
31+
setup_requires = setuptools>=44; wheel

0 commit comments

Comments
 (0)