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
880 B
25 lines
880 B
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='python-keycloak',
|
|
version='0.6.2',
|
|
url='https://github.com/marcospereirampj/python-keycloak',
|
|
license='GNU General Public License - V3',
|
|
author='Marcos Pereira',
|
|
author_email='marcospereira.mpj@gmail.com',
|
|
keywords='keycloak openid',
|
|
description=u'python-keycloak is a Python package providing access to the Keycloak API.',
|
|
packages=['keycloak'],
|
|
install_requires=['requests==2.18.3', 'httmock==1.2.5', 'python-jose==1.3.2'],
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3',
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
'Development Status :: 3 - Alpha',
|
|
'Operating System :: MacOS',
|
|
'Operating System :: Unix',
|
|
'Operating System :: Microsoft :: Windows',
|
|
'Topic :: Utilities'
|
|
]
|
|
)
|