Commit | Line | Data |
---|---|---|
bcf7b99e EMS |
1 | # encoding: utf-8 |
2 | ||
3 | import os | |
4 | import sys | |
5 | from setuptools import setup, find_packages | |
6 | ||
7 | name = 'auf.django.coda' | |
8 | version = '0.2' | |
9 | ||
10 | setup(name=name, | |
11 | version=version, | |
12 | description="Modèles Django pour les données CODA", | |
13 | long_description="", | |
14 | classifiers=[], | |
15 | keywords='', | |
16 | author='Éric Mc Sween', | |
17 | author_email='eric.mcsween@auf.org', | |
18 | url='http://pypi.auf.org/%s' % name, | |
19 | license='GPL', | |
20 | packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
21 | include_package_data=True, | |
22 | zip_safe=False, | |
23 | install_requires=[], | |
24 | entry_points="") |