diff --git a/setup.cfg b/setup.cfg
index 8e6b1245f74557706ac1a85446f40c7c072d030c..f1fc01aead7f997c9df90e769e0b145c10a2e68f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,10 @@
 [metadata]
+name = satella
+version = 2.0.12rc3
 description-file = README.md
+author = Piotr Maślanka
+author_email = piotrm@smok.co
+description = Utilities for writing servers in Python
 
 [pycodestyle]
 max-line-length=120
diff --git a/setup.py b/setup.py
index b3202623aedd03896dedcf74914816e22d7a5bb6..ada3a4d040b63f2cbe4c3c5d6dc30c4800dcd3c8 100644
--- a/setup.py
+++ b/setup.py
@@ -1,12 +1,7 @@
 # coding=UTF-8
 from setuptools import setup, find_packages
 
-setup(name='satella',
-      version='2.0.12rc3',
-      description=u'Utilities for writing servers in Python',
-      author=u'Piotr Maślanka',
-      author_email='piotrm@smok.co',
-      keywords=['ha', 'high availability', 'scalable', 'scalability', 'server'],
+setup(keywords=['ha', 'high availability', 'scalable', 'scalability', 'server'],
       packages=find_packages(exclude=['tests.*', 'tests', 'examples.*', 'examples']),
       install_requires=[
             "six",