diff --git a/python/MANIFEST.in b/python/MANIFEST.in new file mode 100644 index 0000000..9298d9d --- /dev/null +++ b/python/MANIFEST.in @@ -0,0 +1,2 @@ +include *.h +include debian/changelog diff --git a/python/debian/changelog b/python/debian/changelog index 0316b3e..1e29aa3 100644 --- a/python/debian/changelog +++ b/python/debian/changelog @@ -1,3 +1,11 @@ +python-fastrpc (8.0.6) UNRELEASED; urgency=medium + + * Wheel support + * Fixing header includes to the source package + * Fixing python package naming + + -- Aleksey Rembish Fri, 15 Sep 2017 10:41:24 +0200 + python-fastrpc (8.0.5) stable; urgency=medium * fix: fixed problem with dump dict key if is not string #GDPR_RS-108 @@ -43,7 +51,7 @@ python-fastrpc (8.0.2) stable; urgency=medium python-fastrpc (8.0.1) stable; urgency=medium * Revert " support for native string in signature for python 3" - * + * * This reverts commit 3f303dbdfe72831833faa65056b2bdb3f303c86c. * #3798 debian stretch - osetreni v ServerProxy_ServerProxy * support for native string in signature for python 3 diff --git a/python/setup.cfg b/python/setup.cfg new file mode 100644 index 0000000..b8a1655 --- /dev/null +++ b/python/setup.cfg @@ -0,0 +1,3 @@ +[bdist_wheel] +universal = 1 + diff --git a/python/setup.py b/python/setup.py index 291de31..ad9332d 100755 --- a/python/setup.py +++ b/python/setup.py @@ -71,7 +71,7 @@ def wrapper(): author_email = "miroslav.talasek@firma.seznam.cz" setup( - name="fastrpc", + name="python-fastrpc", version=version, author=author, author_email=author_email,