From 7e065ea4ab1ca176f4f4ac31775fab406cdf069e Mon Sep 17 00:00:00 2001 From: Cyril Robert Date: Wed, 17 Feb 2010 11:39:00 -0500 Subject: [PATCH] Ajout setup.py --- .gitignore | 29 +++++++++++++++++++++++++++++ setup.py | 21 +++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index 085c4fe..f3a6bf6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,31 @@ +# All compiled binaries.. *.pyc +*.pyo + +# Fichier temporaires: +.*.swp +*~ +\#*# *.db + +# Ignore merged stuff +*.orig +*.rej + +# Configuration du projet - par environnement +conf.py +django.wsgi + +# les évaluations passées en PDF +evaluation/docs/* + +# buildout +.installed.cfg +bin +develop-eggs +downloads +eggs +log +parts +project/media/uploads +tmp diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..36199f8 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +from setuptools import setup + +version = '1.0' + +setup( + name='django_exportateur', + version=version, + description="Outils d'exportation en csv/ods", + long_description=""" +""", + keywords='django, export, csv, ods', + author='Cyril Robert', + author_email='cyril.robert@auf.org', + license='GPL', + packages=['django_exportateur'], + package_dir={'django_exportateur': 'django_exportateur'}, + include_package_data=True, + zip_safe=True, + install_requires=['django', 'odfpy'], +) + -- 1.7.10.4