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.

25 lines
934 B

6 years ago
7 years ago
6 years ago
7 years ago
  1. # -*- coding: utf-8 -*-
  2. from setuptools import setup
  3. setup(
  4. name='python-keycloak',
  5. version='0.12.1',
  6. url='https://bitbucket.org/agriness/python-keycloak',
  7. license='GNU General Public License - V3',
  8. author='Marcos Pereira',
  9. author_email='marcospereira.mpj@gmail.com',
  10. keywords='keycloak openid',
  11. description=u'python-keycloak is a Python package providing access to the Keycloak API.',
  12. packages=['keycloak', 'keycloak.authorization', 'keycloak.tests'],
  13. install_requires=['requests==2.18.4', 'httmock==1.2.5', 'python-jose==1.4.0', 'simplejson'],
  14. classifiers=[
  15. 'Programming Language :: Python :: 3',
  16. 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
  17. 'Development Status :: 3 - Alpha',
  18. 'Operating System :: MacOS',
  19. 'Operating System :: Unix',
  20. 'Operating System :: Microsoft :: Windows',
  21. 'Topic :: Utilities'
  22. ]
  23. )