Commit | Line | Data |
---|---|---|
7e065ea4 CR |
1 | from setuptools import setup |
2 | ||
91782a7d | 3 | version = '1.0.1' |
7e065ea4 CR |
4 | |
5 | setup( | |
91782a7d | 6 | name='django-exportateur', |
7e065ea4 | 7 | version=version, |
91782a7d | 8 | description="Outils d'exportation en csv/ods (test nom package)", |
7e065ea4 CR |
9 | long_description=""" |
10 | """, | |
11 | keywords='django, export, csv, ods', | |
12 | author='Cyril Robert', | |
13 | author_email='cyril.robert@auf.org', | |
14 | license='GPL', | |
91782a7d CR |
15 | packages=['django-exportateur'], |
16 | package_dir={'django-exportateur': 'django_exportateur'}, | |
7e065ea4 CR |
17 | include_package_data=True, |
18 | zip_safe=True, | |
19 | install_requires=['django', 'odfpy'], | |
20 | ) | |
21 |