Coding style cleanups in setup.py

This commit is contained in:
Wouter Bolsterlee
2013-11-06 23:12:37 +01:00
parent 0d9f9621d6
commit 914f88a231

View File

@@ -1,6 +1,7 @@
from os.path import join, dirname from os.path import join, dirname
from setuptools import find_packages, setup from setuptools import find_packages, setup
__version__ = None
execfile('happybase/_version.py') execfile('happybase/_version.py')
@@ -19,10 +20,11 @@ def get_install_requires():
return install_requires return install_requires
setup(name='happybase', setup(
name='happybase',
version=__version__, version=__version__,
description="A developer-friendly Python library to interact " description="A developer-friendly Python library to interact with "
"with Apache HBase", "Apache HBase",
long_description=get_file_contents('README.rst'), long_description=get_file_contents('README.rst'),
author="Wouter Bolsterlee", author="Wouter Bolsterlee",
author_email="uws@xs4all.nl", author_email="uws@xs4all.nl",
@@ -38,4 +40,4 @@ setup(name='happybase',
"Topic :: Database", "Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",
) )
) )