Commit | Line | Data |
---|---|---|
aa2ccaae OL |
1 | from setuptools import setup, find_packages |
2 | ||
3 | name = 'auf.django.saml' | |
0d0b4ec7 | 4 | version = '1.18' |
aa2ccaae OL |
5 | |
6 | setup(name=name, | |
7 | version=version, | |
8 | description="Package to deal with our Identity Provider", | |
9 | long_description="""\ | |
10 | """, | |
0d0b4ec7 | 11 | classifiers=[], |
aa2ccaae OL |
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', | |
0d0b4ec7 | 17 | namespace_packages=['auf', 'auf.django', ], |
aa2ccaae OL |
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 | ) |