Commit | Line | Data |
---|---|---|
0988f8ce OL |
1 | from setuptools import setup, find_packages |
2 | import sys, os | |
3 | ||
4 | name = 'auf.skeleton.django' | |
69b11afb | 5 | version = '1.0' |
0988f8ce OL |
6 | |
7 | setup(name=name, | |
8 | version=version, | |
9 | description="Bootstrap projet AUF en Django", | |
10 | long_description="""\ | |
11 | """, | |
12 | classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
13 | keywords='AUF Skeleton Django', | |
14 | author='Olivier Larchev\xc3\xaaque', | |
15 | author_email='olivier.larchev\xc3\xaaque@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=[ | |
23 | 'setuptools', | |
24 | 'PasteScript>=1.3', | |
25 | 'Cheetah', | |
26 | ], | |
27 | entry_points=""" | |
28 | # -*- Entry points: -*- | |
29 | [paste.paster_create_template] | |
30 | auf_django=auf.skeleton.django.templates:DjangoTemplate | |
31 | """, | |
32 | ) |