Commit | Line | Data |
---|---|---|
0988f8ce | 1 | from setuptools import setup, find_packages |
0988f8ce OL |
2 | |
3 | name = 'auf.skeleton.django' | |
cfa9c371 | 4 | version = '2.1' |
0988f8ce OL |
5 | |
6 | setup(name=name, | |
7 | version=version, | |
8 | description="Bootstrap projet AUF en Django", | |
9 | long_description="""\ | |
10 | """, | |
634c953c | 11 | classifiers=[], |
0988f8ce OL |
12 | keywords='AUF Skeleton Django', |
13 | author='Olivier Larchev\xc3\xaaque', | |
14 | author_email='olivier.larchev\xc3\xaaque@auf.org', | |
15 | url='http://pypi.auf.org/%s' % name, | |
16 | license='GPL', | |
634c953c | 17 | namespace_packages=['auf', 'auf.skeleton', ], |
0988f8ce OL |
18 | packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
19 | include_package_data=True, | |
20 | zip_safe=False, | |
21 | install_requires=[ | |
22 | 'setuptools', | |
23 | 'PasteScript>=1.3', | |
24 | 'Cheetah', | |
25 | ], | |
26 | entry_points=""" | |
27 | # -*- Entry points: -*- | |
28 | [paste.paster_create_template] | |
634c953c | 29 | auf_django_1_3=auf.skeleton.django.templates:Django13Template |
0988f8ce OL |
30 | """, |
31 | ) |