diff --git a/README.rst b/README.rst index 4462e89..04a2bf7 100644 --- a/README.rst +++ b/README.rst @@ -5,15 +5,17 @@ PyPrintful `PyPrintful `_ is a simple Python3-compatible interface to the `Printful API `_. -Quick Start ------------ +Installation +------------ 1. Install the package with: `pip3 install pyprintful` Documentation ------------- -Documentation is available at . +- Documentation is available at ``_. +- Report all bugs at ``_. + .. image:: https://readthedocs.org/projects/pyprintful/badge/?version=latest :target: http://pyprintful.readthedocs.io/en/latest/?badge=latest diff --git a/docs/conf.py b/docs/conf.py index eb410ee..8df2682 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,9 +59,9 @@ # built documents. # The short X.Y version. -version = '1.0.0a6' +version = '1.0.0' # The full version, including alpha/beta/rc tags. -release = '1.0.0a6' +release = '1.0.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyPrintful/__init__.py b/pyPrintful/__init__.py index d7eb15e..402a9b4 100644 --- a/pyPrintful/__init__.py +++ b/pyPrintful/__init__.py @@ -16,7 +16,7 @@ class pyPrintful: :returns: A stateful object with an authenticated connection. """ - VERSION = "1.0.0a6" + VERSION = "1.0.0" _store = { 'base_url': 'https://api.printful.com/', diff --git a/setup.py b/setup.py index bba20e7..aa021b3 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='PyPrintful', - version='1.0.0a6', + version='1.0.0', description='A Python3 wrapper for the Printful.com API.', long_description=long_description, url='https://github.com/559Labs/pyPrintful', @@ -17,7 +17,7 @@ author_email='hello@559labs.com', license='Apache', classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Framework :: Django', 'Framework :: Django :: 1.10',