better python version specs

This commit is contained in:
Manuel Barkhau 2019-02-22 10:44:03 +01:00
parent 0feadb0b4c
commit 70ea1f20ba
2 changed files with 4 additions and 4 deletions

View file

@ -490,7 +490,7 @@ bump_version:
.PHONY: dist_build .PHONY: dist_build
dist_build: dist_build:
$(DEV_ENV_PY) setup.py sdist; $(DEV_ENV_PY) setup.py sdist;
$(DEV_ENV_PY) setup.py bdist_wheel --python-tag=$(BDIST_WHEEL_PYTHON_TAG); $(DEV_ENV_PY) setup.py bdist_wheel --python-tag=py2.py3;
@rm -rf src/*.egg-info @rm -rf src/*.egg-info

View file

@ -57,6 +57,8 @@ setuptools.setup(
pycalver=pycalver.__main__:cli pycalver=pycalver.__main__:cli
""", """,
zip_safe=True, zip_safe=True,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[ classifiers=[
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
"Environment :: Console", "Environment :: Console",
@ -69,9 +71,7 @@ setuptools.setup(
"Operating System :: MacOS :: MacOS X", "Operating System :: MacOS :: MacOS X",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",