PKG-INFO 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. Metadata-Version: 2.1
  2. Name: pysaml2
  3. Version: 4.9.0
  4. Summary: Python implementation of SAML Version 2 Standard
  5. Home-page: https://idpy.org
  6. Author: IdentityPython
  7. Author-email: discuss@idpy.org
  8. Maintainer: IdentityPython
  9. Maintainer-email: discuss@idpy.org
  10. License: Apache License Version 2.0
  11. Project-URL: Bug Tracker, https://github.com/IdentityPython/pysaml2/issues
  12. Project-URL: Documentation, https://pysaml2.readthedocs.io
  13. Project-URL: Source Code, https://github.com/IdentityPython/pysaml2
  14. Description: *************************
  15. PySAML2 - SAML2 in Python
  16. *************************
  17. :Version: see VERSION_
  18. :Documentation: https://pysaml2.readthedocs.io/
  19. .. image:: https://api.travis-ci.org/IdentityPython/pysaml2.png?branch=master
  20. :target: https://travis-ci.org/IdentityPython/pysaml2
  21. .. image:: https://img.shields.io/pypi/pyversions/pysaml2.svg
  22. :target: https://pypi.org/project/pysaml2/
  23. .. image:: https://img.shields.io/pypi/v/pysaml2.svg
  24. :target: https://pypi.org/project/pysaml2/
  25. PySAML2 is a pure python implementation of SAML Version 2 Standard. It contains
  26. all necessary pieces for building a SAML2 service provider or an identity
  27. provider. The distribution contains examples of both. Originally written to
  28. work in a WSGI environment there are extensions that allow you to use it with
  29. other frameworks.
  30. Install
  31. =======
  32. You can install with `pip install pysaml2`
  33. Testing
  34. =======
  35. PySAML2 uses the pytest_ framework for testing. To run the tests on your
  36. system's version of python:
  37. 1. Create and activate a virtualenv_
  38. 2. Inside the virtualenv_, install the dependencies needed for testing
  39. :code:`pip install -r tests/test-requirements.txt`
  40. 3. Run the tests :code:`py.test tests`
  41. To run tests in multiple python environments, you can use pyenv_ with tox_.
  42. Please contribute!
  43. ==================
  44. To help out, you could:
  45. 1. Test and report any bugs or other difficulties.
  46. 2. Implement missing features.
  47. 3. Write more unit tests.
  48. **If you have the time and inclination I'm looking for Collaborators**
  49. .. _VERSION: VERSION
  50. .. _pytest: https://docs.pytest.org/en/latest/
  51. .. _virtualenv: https://virtualenv.pypa.io/en/stable/
  52. .. _pyenv: https://github.com/yyuu/pyenv
  53. .. _tox: https://tox.readthedocs.io/en/latest/
  54. Keywords: saml,saml2,standard,federation,idpy,IdentityPython
  55. Platform: UNKNOWN
  56. Classifier: Development Status :: 4 - Beta
  57. Classifier: License :: OSI Approved :: Apache Software License
  58. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  59. Classifier: Programming Language :: Python
  60. Classifier: Programming Language :: Python :: 2
  61. Classifier: Programming Language :: Python :: 2.7
  62. Classifier: Programming Language :: Python :: 3
  63. Classifier: Programming Language :: Python :: 3.4
  64. Classifier: Programming Language :: Python :: 3.5
  65. Classifier: Programming Language :: Python :: 3.6
  66. Description-Content-Type: text/x-rst; charset=UTF-8
  67. Provides-Extra: s2repoze