| 1 | # encoding: utf-8 |
| 2 | |
| 3 | from setuptools import setup, find_packages |
| 4 | |
| 5 | name = 'auf.django.mailing' |
| 6 | version = '0.4' |
| 7 | |
| 8 | setup( |
| 9 | name=name, |
| 10 | version=version, |
| 11 | description="Application de mailing", |
| 12 | author='Béranger Enselme', |
| 13 | author_email='beranger.enselme@auf.org', |
| 14 | url='http://pypi.auf.org/%s' % name, |
| 15 | license='GPL', |
| 16 | packages=find_packages(exclude=['tests', 'tests.*']), |
| 17 | namespace_packages=['auf', 'auf.django'], |
| 18 | include_package_data=True, |
| 19 | zip_safe=False, |
| 20 | install_requires=[ |
| 21 | 'setuptools', |
| 22 | ] |
| 23 | ) |
| 24 | |