+# encoding: utf-8
+
from setuptools import setup, find_packages
-import sys, os
name = 'auf.django.export'
version = '0.3'
-setup(name=name,
- version=version,
- description="Provide easy way to export as CSV in Django Admin",
- long_description="""\
-""",
- classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
- keywords='',
- author='Olivier Larchev\xc3\xaaque',
- author_email='olivier.larcheveque@auf.org',
- url='http://pypi.auf.org/%s' % name,
- license='GPL',
- packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
- include_package_data=True,
- zip_safe=False,
- install_requires=[
- # -*- Extra requirements: -*-
- ],
- entry_points="""
- # -*- Entry points: -*-
- """,
- )
+setup(
+ name=name,
+ version=version,
+ description="Provides an easy way to export as CSV in Django Admin",
+ author='Olivier Larchevêque',
+ author_email='olivier.larcheveque@auf.org',
+ url='http://pypi.auf.org/%s' % name,
+ license='GPL',
+ packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
+ include_package_data=True,
+ zip_safe=False,
+)