From: Matías Aguirre Date: Wed, 5 Jan 2011 01:19:20 +0000 (-0200) Subject: setup.py updated X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=d5e749805b80ca78563fc5065b319527db117599;p=django-social-auth.git setup.py updated --- diff --git a/.gitignore b/.gitignore index f62485b..f951e96 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,7 @@ .*.sw[po] test.db local_settings.py +build/ +dist/ +django_social_auth.egg-info/ +social_auth.egg-info/ diff --git a/setup.py b/setup.py index 9cd1030..4254132 100644 --- 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'])