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.

16 lines
514 B

  1. # -*- coding: utf-8 -*-
  2. from setuptools import setup
  3. setup(
  4. name='python-keycloak',
  5. version='0.1.0',
  6. url='https://github.com/marcospereirampj/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'],
  13. install_requires=['requests==2.18.3', 'httmock==1.2.5'],
  14. )