Commit a977d555 authored by Stefane Fermigier's avatar Stefane Fermigier

chore: fix release and rerelease.

parent 6c6bd113
...@@ -81,3 +81,14 @@ wheel_manylinux32 wheel_manylinux64: dist/$(PACKAGENAME)-$(VERSION).tar.gz ...@@ -81,3 +81,14 @@ wheel_manylinux32 wheel_manylinux64: dist/$(PACKAGENAME)-$(VERSION).tar.gz
{ $$PYBIN/pip wheel -w /io/$$WHEELHOUSE /io/$< & } ; \ { $$PYBIN/pip wheel -w /io/$$WHEELHOUSE /io/$< & } ; \
done; wait; \ done; wait; \
for whl in /io/$$WHEELHOUSE/$(PACKAGENAME)-$(VERSION)-*-linux_*.whl; do auditwheel repair $$whl -w /io/$$WHEELHOUSE; done' for whl in /io/$$WHEELHOUSE/$(PACKAGENAME)-$(VERSION)-*-linux_*.whl; do auditwheel repair $$whl -w /io/$$WHEELHOUSE; done'
#
# Additional targets by sfermigier
#
.PHONY: release
release:
@make clean
rm -rf dist
python setup.py sdist
twine upload dist/*
...@@ -2,9 +2,10 @@ Cython+ - Multi-core concurrent programming in Python ...@@ -2,9 +2,10 @@ Cython+ - Multi-core concurrent programming in Python
====================================================== ======================================================
.. warning:: .. warning::
This is the README for the `Cython+ <https://cython.plus/>`_. This is the README for the `Cython+ <https://cython.plus/>`_.
Since Cython+ is heavily based on `Cython <https://cython.org/>`_, Since Cython+ is heavily based on `Cython <https://cython.org/>`_,
you may with to read also the `README for Cython <./README-Cython.rst>`_.* you may want to read also the `README for Cython <./README-Cython.rst>`_.*
What's Cython? What's Cython?
......
...@@ -20,12 +20,12 @@ PYTHON_REQUIRES = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' ...@@ -20,12 +20,12 @@ PYTHON_REQUIRES = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'
# Metadata for the Cython+ project # Metadata for the Cython+ project
# #
NAME = "cython-plus" NAME = "cython-plus"
VERSION = "0.1.0" VERSION = "0.1.0.post2"
HOME = "https://cython.plus/" HOME = "https://cython.plus/"
AUTHOR = 'The Cython+ consortium + the original Cython authors' AUTHOR = 'The Cython+ consortium + the original Cython authors'
AUTHOR_EMAIL = 'contact@cython.plus' AUTHOR_EMAIL = 'contact@cython.plus'
DESCRIPTION = "Multi-core concurrent programming in Python, based on the Cython language" DESCRIPTION = "Multi-core concurrent programming in Python, based on the Cython language"
LONG_DESCRIPTION = open("README.rst").read()
# #
# Original setup.py # Original setup.py
...@@ -256,6 +256,7 @@ def run_build(): ...@@ -256,6 +256,7 @@ def run_build():
author=AUTHOR, author=AUTHOR,
author_email=AUTHOR_EMAIL, author_email=AUTHOR_EMAIL,
description=DESCRIPTION, description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license='Apache', license='Apache',
classifiers=[ classifiers=[
dev_status(version), dev_status(version),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment