From df29877044d174970a00d121e0321fef15d98d88 Mon Sep 17 00:00:00 2001 From: Stas Kravets Date: Mon, 27 Dec 2010 23:13:34 +0800 Subject: [PATCH] setup.py file added for correct install with pip --- setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 setup.py 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 -- 2.39.5