From: Stas Kravets Date: Mon, 27 Dec 2010 15:13:34 +0000 (+0300) Subject: setup.py file added for correct install with pip X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=588ed9959434379c823890e8e4b9289690d78dd1;p=django-social-auth.git setup.py file added for correct install with pip --- diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..9cd1030 --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +from setuptools import setup, find_packages + +setup( + name='django-social-auth', + version="1.0", + author='Matias Aguirre', + author_email='matiasaguirre@gmail.com', + url='https://github.com/omab/django-social-auth', + install_requires=['django', 'python-openid', 'oauth'], + description = 'Django social authentication made simple.', + packages=find_packages(), + include_package_data=True, +) \ No newline at end of file