diff --git a/setup.py b/setup.py index e3b5787..57e8092 100644 --- a/setup.py +++ b/setup.py @@ -1,38 +1,38 @@ #!/usr/bin/env python '''The setup and build script for the statusio-python library.''' import os from setuptools import setup, find_packages def read(*paths): """Build a file path from *paths* and return the contents.""" with open(os.path.join(*paths), 'r') as f: return f.read() setup( name='statusio-python', - version='0.2', + version='0.3', author='Status.io', author_email='support@status.io', license='Apache License 2.0', url='https://github.com/statusio/statusio-python', keywords='status.io api statusio', description='A Python wrapper around the Status.io API', long_description=(read('README.rst')), packages=find_packages(exclude=['tests*']), install_requires=['future', 'requests'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Internet', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', ], ) diff --git a/statusio/__init__.py b/statusio/__init__.py index dc2b4da..9576184 100644 --- a/statusio/__init__.py +++ b/statusio/__init__.py @@ -1,11 +1,11 @@ #!/usr/bin/env python """A library that provides a Python interface to the Status.io API""" from __future__ import absolute_import __author__ = 'support@status.io' -__version__ = '0.2' +__version__ = '0.3' import json # noqa from .api import Api # noqa