Commit | Line | Data |
---|---|---|
4be9d9da OL |
1 | from setuptools import setup, find_packages |
2 | import sys, os | |
3 | ||
4 | name = 'auf.recipe.django' | |
05129f35 | 5 | version = '0.3.0' |
4be9d9da OL |
6 | |
7 | setup(name=name, | |
8 | version=version, | |
9 | description="Recette Django AUF avec nos pratiques internes", | |
10 | long_description="""\ | |
11 | """, | |
12 | classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
13 | keywords='', | |
14 | author='Olivier Larchev\xc3\xaaque', | |
15 | author_email='olivier.larcheveque@auf.org', | |
16 | url='http://pypi.auf.org/%s' % name, | |
17 | license='GPL', | |
18 | namespace_packages = ['auf'], | |
19 | packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
20 | include_package_data=True, | |
21 | zip_safe=False, | |
22 | install_requires=[ | |
3a9e38cc EMS |
23 | 'setuptools', |
24 | 'zc.buildout', | |
25 | 'zc.recipe.egg', | |
26 | 'djangorecipe', | |
4be9d9da OL |
27 | ], |
28 | entry_points=""" | |
29 | # -*- Entry points: -*- | |
30 | [zc.buildout] | |
31 | default = auf.recipe.django:Recipe | |
32 | """, | |
33 | ) |