From 03e2a69dec5b77a0d982359b0b17eb925d6264f1 Mon Sep 17 00:00:00 2001 From: Piotr Maslanka <piotr.maslanka@henrietta.com.pl> Date: Sun, 8 Oct 2017 03:52:43 +0200 Subject: [PATCH] 0.92rc1 --- CHANGELOG.md | 4 ++++ build.sh | 3 ++- setup.cfg | 23 ++++++++++++++++++++++- setup.py | 27 +-------------------------- 4 files changed, 29 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 539e82e..a7805ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Change log +* 0.92: + + * TBA + * v0.91: * removed annoying warnings diff --git a/build.sh b/build.sh index 1f9ee20..dbec9f7 100644 --- a/build.sh +++ b/build.sh @@ -3,8 +3,9 @@ set -x set -e +python setup.py bdist bdist_wheel + if [ $TRAVIS_BRANCH == "master" ]; then pip install wheel twine - python setup.py bdist bdist_wheel twine upload -u $PYPI_USER -p $PYPI_PWD dist/* fi diff --git a/setup.cfg b/setup.cfg index a223ae3..81e6975 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,8 +1,29 @@ [metadata] description-file = README.md +name = CoolAMQP +version = 0.92rc1 +license = MIT License +classifiers = + Programming Language :: Python + Programming Language :: Python :: 2.7 + Programming Language :: Python :: 3.3 + Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 + Programming Language :: Python :: Implementation :: CPython + Programming Language :: Python :: Implementation :: PyPy + Operating System :: POSIX :: Linux + Development Status :: 5 - Production/Stable + License :: OSI Approved :: MIT License + Topic :: Software Development :: Libraries + Intended Audience :: Developers + Topic :: Software Development :: Libraries :: Python Modules +description = Very fast pure-Python AMQP client +author = DMS Serwis s.c. +author_email = piotrm@dms-serwis.pl +url = https://github.com/smok-serwis/coolamqp [pycodestyle] -max-line-length=120 +max-line-length=80 [bdist_wheel] universal=1 diff --git a/setup.py b/setup.py index 04171ca..b415803 100644 --- a/setup.py +++ b/setup.py @@ -3,14 +3,7 @@ from setuptools import setup -setup(name=u'CoolAMQP', - version='0.91', - description=u'Very fast pure-Python AMQP client', - author=u'DMS Serwis s.c.', - author_email=u'piotrm@smok.co', - url=u'https://github.com/smok-serwis/coolamqp', - download_url='https://github.com/smok-serwis/coolamqp/archive/v0.91.zip', - keywords=['amqp', 'rabbitmq', 'client', 'network', 'ha', 'high availability'], +setup(keywords=['amqp', 'rabbitmq', 'client', 'network', 'ha', 'high availability'], packages=[ 'coolamqp', 'coolamqp.uplink', @@ -21,7 +14,6 @@ setup(name=u'CoolAMQP', 'coolamqp.framing', 'coolamqp.framing.compilation', ], - license=u'MIT License', long_description=u'''Pure Python AMQP client, but with dynamic class generation and memoryviews FOR THE GODSPEED. Also, handles your reconnects and transactionality THE RIGHT WAY, though somewhat opinionated''', @@ -30,23 +22,6 @@ Also, handles your reconnects and transactionality THE RIGHT WAY, though somewha test_suite='nose.collector', platforms=[ 'posix' - ], - classifiers=[ - 'Programming Language :: Python', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: Implementation :: CPython', - 'Programming Language :: Python :: Implementation :: PyPy', -# 'Operating System :: OS Independent', epoll :'( - 'Operating System :: POSIX :: Linux', - 'Development Status :: 5 - Production/Stable', - 'License :: OSI Approved :: MIT License', - 'Topic :: Software Development :: Libraries', - 'Intended Audience :: Developers', - 'Topic :: Software Development :: Libraries :: Python Modules' # obvi - ] ) -- GitLab