Skip to content
This repository has been archived by the owner on Aug 31, 2020. It is now read-only.

Commit

Permalink
Fix requirements issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jjkester committed Apr 5, 2016
1 parent 1c5bb84 commit 1a13fa3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The short X.Y version.
version = '0.1'
# The full version, including alpha/beta/rc tags.
release = '0.1.1'
release = '0.1.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion moneybird/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from moneybird.authentication import Authentication

VERSION = '0.1.1'
VERSION = '0.1.3'

logger = logging.getLogger('moneybird')

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
from distutils.core import setup

from moneybird.api import VERSION

setup(
name='moneybird',
version=VERSION,
version='0.1.3',
packages=['moneybird'],
url='https://github.com/jjkester/moneybird-python',
license='MIT',
author='Jan-Jelle Kester',
author_email='janjelle@jjkester.nl',
description='MoneyBird API and OAuth client library',
install_requires=['requests'],
requires=['requests'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 1a13fa3

Please sign in to comment.