Skip to content

Commit

Permalink
fix setup.py to use packages argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarbaugh committed Mar 27, 2013
1 parent a5e2c5f commit 1d01dde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
from distutils.core import setup

#long_description = open('README.md').read()
long_description = open('README.rst').read()

setup(
name="django-googleauth",
version='0.3.0',
py_modules=["googleauth"],
packages=["googleauth"],
description="OpenID authentication Google and Google Apps accounts",
author="Jeremy Carbaugh",
author_email="[email protected]",
license='BSD',
#long_description=long_description,
long_description=long_description,
platforms=["any"],
classifiers=[
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit 1d01dde

Please sign in to comment.