]> git.parisson.com Git - django-social-auth.git/commitdiff
setup.py file added for correct install with pip
authorStas Kravets <skravets@internal-rfc1918.hn.nnov.stream.ru>
Mon, 27 Dec 2010 15:13:34 +0000 (18:13 +0300)
committerStas Kravets <skravets@internal-rfc1918.hn.nnov.stream.ru>
Mon, 27 Dec 2010 15:13:34 +0000 (18:13 +0300)
setup.py [new file with mode: 0644]

diff --git a/setup.py b/setup.py
new file mode 100644 (file)
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