Commit | Line | Data |
---|---|---|
7287c36d CR |
1 | from setuptools import setup |
2 | ||
9cbd3876 | 3 | version = '1.1' |
7287c36d CR |
4 | |
5 | setup( | |
6 | name='django_historique', | |
7 | version=version, | |
8 | description="Conserver des copies des objets dans une table d'historique", | |
9 | long_description=""" | |
10 | """, | |
11 | keywords='django, history, diff', | |
12 | author='Cyril Robert', | |
13 | author_email='cyril.robert@auf.org', | |
14 | license='GPL', | |
15 | packages=['django_historique'], | |
16 | package_dir={'django_historique': 'django_historique'}, | |
17 | include_package_data=True, | |
18 | zip_safe=True, | |
19 | install_requires=['django'], | |
20 | ) | |
21 | ||
22 |