From 1d01ddefdab19541bc24d794b3f9aaf0a73ce242 Mon Sep 17 00:00:00 2001 From: Jeremy Carbaugh Date: Wed, 27 Mar 2013 15:39:59 -0400 Subject: [PATCH] fix setup.py to use packages argument --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index e83e95e..a7a70d1 100644 --- a/setup.py +++ b/setup.py @@ -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="jcarbaugh@gmail.com", license='BSD', - #long_description=long_description, + long_description=long_description, platforms=["any"], classifiers=[ "Development Status :: 4 - Beta",