setup.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # Copyright (C) 2011-2012 Yaco Sistemas <lgs@yaco.es>
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. import os
  15. from setuptools import setup, find_packages
  16. def read(*rnames):
  17. return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
  18. setup(
  19. name='djangosaml2',
  20. version='0.13.0',
  21. description='pysaml2 integration in Django',
  22. long_description='\n\n'.join([read('README'), read('CHANGES')]),
  23. classifiers=[
  24. "Development Status :: 3 - Alpha",
  25. "Environment :: Web Environment",
  26. "Intended Audience :: Developers",
  27. "Operating System :: OS Independent",
  28. "Programming Language :: Python",
  29. "Topic :: Internet :: WWW/HTTP",
  30. "Topic :: Internet :: WWW/HTTP :: WSGI",
  31. "Topic :: Security",
  32. "Topic :: Software Development :: Libraries :: Application Frameworks",
  33. ],
  34. keywords="django,pysaml2,saml2,federated authentication,authentication",
  35. author="Yaco Sistemas",
  36. author_email="lgs@yaco.es",
  37. url="https://bitbucket.org/lgs/djangosaml2",
  38. license='Apache 2.0',
  39. packages=find_packages(),
  40. include_package_data=True,
  41. zip_safe=False,
  42. install_requires=[
  43. 'pysaml2==2.2.0',
  44. 'python-memcached==1.48',
  45. ],
  46. )