| 1 | from setuptools import setup, find_packages |
| 2 | |
| 3 | name = 'auf.django.saml' |
| 4 | version = '1.8' |
| 5 | |
| 6 | setup(name=name, |
| 7 | version=version, |
| 8 | description="Package to deal with our Identity Provider", |
| 9 | long_description="""\ |
| 10 | """, |
| 11 | classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
| 12 | keywords='Django SAML Auth', |
| 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 | ) |