setup.cfg 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. [metadata]
  2. name = pysaml2
  3. version = file:VERSION
  4. author = IdentityPython
  5. author-email = discuss@idpy.org
  6. maintainer = IdentityPython
  7. maintainer-email = discuss@idpy.org
  8. license = Apache License Version 2.0
  9. license-file = LICENSE
  10. description = Python implementation of SAML Version 2 Standard
  11. long-description = file:README.rst
  12. long_description_content_type = text/x-rst; charset=UTF-8
  13. home-page = https://idpy.org
  14. project_urls =
  15. Bug Tracker = https://github.com/IdentityPython/pysaml2/issues
  16. Documentation = https://pysaml2.readthedocs.io
  17. Source Code = https://github.com/IdentityPython/pysaml2
  18. classifier =
  19. Development Status :: 4 - Beta
  20. License :: OSI Approved :: Apache Software License
  21. Topic :: Software Development :: Libraries :: Python Modules
  22. Programming Language :: Python
  23. Programming Language :: Python :: 2
  24. Programming Language :: Python :: 2.7
  25. Programming Language :: Python :: 3
  26. Programming Language :: Python :: 3.4
  27. Programming Language :: Python :: 3.5
  28. Programming Language :: Python :: 3.6
  29. requires-dist = setuptools
  30. keywords =
  31. saml
  32. saml2
  33. standard
  34. federation
  35. idpy
  36. IdentityPython
  37. [options]
  38. zip_safe = False
  39. include_package_data = True
  40. package_dir =
  41. = src
  42. packages = find:
  43. scripts =
  44. tools/make_metadata.py
  45. tools/mdexport.py
  46. tools/merge_metadata.py
  47. tools/parse_xsd2.py
  48. install_requires =
  49. cryptography >= 1.4
  50. defusedxml
  51. pyOpenSSL
  52. python-dateutil
  53. pytz
  54. requests >= 1.0.0
  55. six
  56. [options.packages.find]
  57. where = src
  58. include =
  59. saml2
  60. saml2.*
  61. [options.package_data]
  62. * =
  63. *.xml
  64. [options.extras_require]
  65. s2repoze =
  66. paste
  67. zope.interface
  68. repoze.who
  69. [bdist_wheel]
  70. universal = 1
  71. [flake8]
  72. author-attribute = forbidden
  73. no-accept-encodings = True
  74. assertive-snakecase = True
  75. inline-quotes = "
  76. multiline-quotes = """
  77. docstring-quotes = """
  78. application-import-names = saml2
  79. hang_closing = false
  80. doctests = false
  81. max-complexity = 10
  82. exclude =
  83. .git
  84. __pycache__
  85. docs/source/conf.py
  86. build
  87. dist
  88. [egg_info]
  89. tag_build =
  90. tag_date = 0