diff --git a/dropbot/__init__.py b/dropbot/__init__.py index 87eaf32..cba9f0a 100644 --- a/dropbot/__init__.py +++ b/dropbot/__init__.py @@ -1 +1,2 @@ __author__ = 'nikdoof' +__version__ = '0.2.0' diff --git a/setup.py b/setup.py index dfe832b..001fc39 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,13 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- - try: from setuptools import setup except ImportError: from distutils.core import setup +from dropbot import __version__ as pkg_version + readme = open('README.md').read() requirements = [ @@ -25,7 +26,7 @@ test_requirements = [ setup( name='dropbot', - version='0.1a', + version=pkg_version, description='A XMPP bot to provide simple services to NOG8S and Predditors in general', long_description=readme, author='Andrew Williams',