diff --git a/HISTORY.rst b/HISTORY.rst index 07b907f..d09f6bf 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ Release History --------------- +0.0.3 (2015-06-03) +^^^^^^^^^^^^^^^^^^ + +- Fix dependencies + 0.0.2 (2015-06-03) ^^^^^^^^^^^^^^^^^^ diff --git a/docs/source/HISTORY.rst b/docs/source/HISTORY.rst index 07b907f..d09f6bf 100644 --- a/docs/source/HISTORY.rst +++ b/docs/source/HISTORY.rst @@ -3,6 +3,11 @@ Release History --------------- +0.0.3 (2015-06-03) +^^^^^^^^^^^^^^^^^^ + +- Fix dependencies + 0.0.2 (2015-06-03) ^^^^^^^^^^^^^^^^^^ diff --git a/requirements.txt b/requirements.txt index 5ae1756..8b6c4d6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,12 +3,12 @@ Babel==1.3 docutils==0.12 Jinja2==2.7.3 MarkupSafe==0.23 +pockets==0.2.4 Pygments==2.0.2 pytz==2015.4 -PyYAML==3.11 requests==2.7.0 six==1.9.0 snowballstemmer==1.2.0 -Sphinx==1.3.1 -Sphinx-PyPI-upload==0.2.1 +Sphinx==1.2.3 sphinx-rtd-theme==0.1.8 +sphinxcontrib-napoleon==0.3.6 diff --git a/scout_api/version.py b/scout_api/version.py index c81f0a7..d09ee69 100644 --- a/scout_api/version.py +++ b/scout_api/version.py @@ -1,2 +1,2 @@ -version_info = (0, 0, 2) +version_info = (0, 0, 3) __version__ = '.'.join(str(v) for v in version_info) diff --git a/setup.py b/setup.py index e6d64cb..d2cbf16 100644 --- a/setup.py +++ b/setup.py @@ -7,9 +7,9 @@ __version__ = version.__version__ -def read(*paths): +def read(filename): """Build a file path from *paths* and return the contents.""" - with open(os.path.join(*paths), 'r') as f: + with open(os.path.join(os.path.dirname(__file__), filename), 'r') as f: return f.read() setup( @@ -43,5 +43,7 @@ def read(*paths): 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules', ], - install_requires=['requests'] + install_requires=[ + 'requests', + ] )