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.

30 lines
1.0 KiB

6 years ago
6 years ago
6 years ago
6 years ago
7 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.13.1',
  8. url='https://bitbucket.org/agriness/python-keycloak',
  9. license='The MIT License',
  10. author='Marcos Pereira',
  11. author_email='marcospereira.mpj@gmail.com',
  12. keywords='keycloak openid',
  13. description=u'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.18.4', 'httmock==1.2.5', 'python-jose==1.4.0', 'simplejson'],
  18. classifiers=[
  19. 'Programming Language :: Python :: 3',
  20. 'License :: OSI Approved :: MIT License',
  21. 'Development Status :: 3 - Alpha',
  22. 'Operating System :: MacOS',
  23. 'Operating System :: Unix',
  24. 'Operating System :: Microsoft :: Windows',
  25. 'Topic :: Utilities'
  26. ]
  27. )