-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
41 lines (37 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
Quart-Keycloak
-------------
Add Keycloak OpenID Connect to your Quart application.
"""
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
INSTALL_REQUIRES = open("requirements.txt").read().splitlines()
setup(
name='Quart-Keycloak',
version='1.0.8',
url='https://github.com/kroketio/quart-keycloak',
author='Kroket Ltd.',
author_email='code@kroket.io',
description='Add Keycloak OpenID Connect to your Quart application',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['quart_keycloak'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=INSTALL_REQUIRES,
tests_require=INSTALL_REQUIRES + ["asynctest", "hypothesis", "pytest", "pytest-asyncio"],
extras_require={"dotenv": ["python-dotenv"]},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: BSD License",
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)