mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 14:30:09 +01:00
better python version specs
This commit is contained in:
parent
0feadb0b4c
commit
70ea1f20ba
2 changed files with 4 additions and 4 deletions
2
makefile
2
makefile
|
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
6
setup.py
6
setup.py
|
|
@ -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",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue