diff --git a/CHANGELOG.md b/CHANGELOG.md
index 539e82e2da0c8d297b52b5d8747a8b29a9778677..a7805eaca8a53add3889d705b0e58944572cf412 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 1f9ee202064331466f5385f44fa5756733723a0b..dbec9f70b11d210a63f0f9ac216a22d179624e67 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 a223ae398abf1dc4253914d33e4b718f231fc893..81e69759c0dae482e4b49885492fbda43dd5f0e9 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 04171ca8d0a3f66d4952e0f41038fa78d06079e8..b4158035a5f9f0278b07f33699ac8b197c38de40 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
-
       ]
      )