From d5e749805b80ca78563fc5065b319527db117599 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Aguirre?= Date: Tue, 4 Jan 2011 23:19:20 -0200 Subject: [PATCH] setup.py updated --- .gitignore | 4 ++++ setup.py | 37 +++++++++++++++++++++++++------------ 2 files changed, 29 insertions(+), 12 deletions(-) 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']) -- 2.39.5