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.

26 lines
909 B

7 years ago
7 years ago
  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. copyright='Copyright (c) 2017 Marcos Pereira',
  11. keywords='keycloak openid',
  12. description=u'python-keycloak is a Python package providing access to the Keycloak API.',
  13. packages=['keycloak'],
  14. install_requires=['requests==2.18.3', 'httmock==1.2.5'],
  15. classifiers=[
  16. 'Programming Language :: Python :: 3',
  17. 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
  18. 'Development Status :: 3 - Alpha',
  19. 'Operating System :: MacOS',
  20. 'Operating System :: Unix',
  21. 'Operating System :: Microsoft :: Windows',
  22. 'Topic :: Utilities'
  23. ]
  24. )