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