You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.0 KiB

6 years ago
3 years ago
6 years ago
6 years ago
7 years ago
5 years ago
6 years ago
7 years ago
6 years ago
7 years ago
  1. # -*- coding: utf-8 -*-
  2. from setuptools import setup
  3. with open("README.md", "r") as fh:
  4. long_description = fh.read()
  5. setup(
  6. name='python-keycloak',
  7. version='0.24.0',
  8. url='https://github.com/marcospereirampj/python-keycloak',
  9. license='The MIT License',
  10. author='Marcos Pereira',
  11. author_email='marcospereira.mpj@gmail.com',
  12. keywords='keycloak openid',
  13. description='python-keycloak is a Python package providing access to the Keycloak API.',
  14. long_description=long_description,
  15. long_description_content_type="text/markdown",
  16. packages=['keycloak', 'keycloak.authorization', 'keycloak.tests'],
  17. install_requires=['requests>=2.20.0', 'python-jose>=1.4.0'],
  18. tests_require=['httmock>=1.2.5'],
  19. classifiers=[
  20. 'Programming Language :: Python :: 3',
  21. 'License :: OSI Approved :: MIT License',
  22. 'Development Status :: 3 - Alpha',
  23. 'Operating System :: MacOS',
  24. 'Operating System :: Unix',
  25. 'Operating System :: Microsoft :: Windows',
  26. 'Topic :: Utilities'
  27. ]
  28. )