]> git.parisson.com Git - django-social-auth.git/commitdiff
setup.py updated
authorMatías Aguirre <matiasaguirre@gmail.com>
Wed, 5 Jan 2011 01:19:20 +0000 (23:19 -0200)
committerMatías Aguirre <matiasaguirre@gmail.com>
Wed, 5 Jan 2011 01:19:20 +0000 (23:19 -0200)
.gitignore
setup.py

index f62485b8e7a1748855f9df00f953f19d0067e789..f951e966d4a00f1aa2c9b8f5a469560c6ef0e82d 100644 (file)
@@ -2,3 +2,7 @@
 .*.sw[po]
 test.db
 local_settings.py
+build/
+dist/
+django_social_auth.egg-info/
+social_auth.egg-info/
index 9cd103059fe8651e8b65c48af7093f17f36cf0d7..42541329e6e127239604377840ba9af61de0ddea 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,13 +1,26 @@
-from setuptools import setup, find_packages
+# -*- coding: utf-8 -*-
+"""Setup file for easy installation"""
+from os.path import join, dirname
+from setuptools import setup
 
-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
+
+setup(name='django-social-auth',
+      version='0.1',
+      author='Matías Aguirre',
+      author_email='matiasaguirre@gmail.com',
+      description='Django social authentication made simple.',
+      license='GPL',
+      keywords='django, openid, oath, social auth, application',
+      url='https://github.com/omab/django-social-auth',
+      packages=['social_auth'],
+      long_description=open(join(dirname(__file__), 'README.rst')).read(),
+      requires=['django (>=1.2)',
+                'oauth (>=1.0)',
+                'python_openid (>=2.2)'],
+      classifiers=['Framework :: Django',
+                   'Development Status :: 4 - Beta',
+                   'Topic :: Internet',
+                   'License :: OSI Approved :: GNU General Public License (GPL)',
+                   'Intended Audience :: Developers',
+                   'Environment :: Web Environment',
+                   'Programming Language :: Python'])