Commit | Line | Data |
---|---|---|
567ee8ed OL |
1 | from setuptools import setup, find_packages |
2 | ||
3 | name = 'auf.django.piwik' | |
4 | version = '1.0' | |
5 | ||
6 | setup(name=name, | |
7 | version=version, | |
8 | description="Middleware pour incorper le code de tracking de Piwik", | |
9 | long_description="""\ | |
10 | """, | |
11 | classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
12 | keywords='Django Piwik', | |
13 | author='Olivier Larchev\xc3\xaaque', | |
14 | author_email='olivier.larcheveque@auf.org', | |
15 | url='http://pypi.auf.org/%s' % name, | |
16 | license='GPL', | |
17 | namespace_packages = ['auf', 'auf.django', ], | |
18 | packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
19 | include_package_data=True, | |
20 | zip_safe=False, | |
21 | install_requires=[ | |
22 | # -*- Extra requirements: -*- | |
23 | ], | |
24 | entry_points=""" | |
25 | # -*- Entry points: -*- | |
26 | """, | |
27 | ) |