Skip to content

Commit

Permalink
Fix the real module not being included >_<
Browse files Browse the repository at this point in the history
  • Loading branch information
tgs committed May 28, 2014
1 parent add801e commit b634669
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = '0.2'
version = '0.3'
# The full version, including alpha/beta/rc tags.
release = '0.2'
release = '0.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
File renamed without changes.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@

setup(
name='requests-jwt',
version='0.2',
version='0.3',
url='https://github.com/tgs/requests-jwt',
install_requires=[ 'requests>=1.0.0', 'PyJWT' ],
packages=['requests_jwt'],
install_requires=[ 'requests', 'PyJWT' ],
tests_require=['httpretty'],
test_suite='tests.suite',
provides=[ 'requests_jwt' ],
Expand Down

0 comments on commit b634669

Please sign in to comment.