Commit | Line | Data |
---|---|---|
6a6650bf OL |
1 | # -*- encoding: utf-8 -*- |
2 | ||
3 | from setuptools import setup, find_packages | |
4 | import sys, os | |
5 | ||
6 | name = 'auf.django.skin' | |
59840e3f | 7 | version = '1.3' |
6a6650bf OL |
8 | |
9 | setup(name=name, | |
10 | version=version, | |
11 | description="Élements de la charte graphique AUF", | |
12 | long_description="""\ | |
13 | """, | |
14 | classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
15 | keywords='AUF skin charte graphique CSS HTML', | |
16 | author='Olivier Larchev\xc3\xaaque', | |
17 | author_email='olivier.larcheveque@auf.org', | |
18 | url='http://pypi.auf.org/%s' % name, | |
19 | license='GPL', | |
20 | namespace_packages = ['auf'], | |
21 | packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
22 | include_package_data=True, | |
23 | zip_safe=False, | |
6a6650bf | 24 | ) |