-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1020 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 1020 Bytes
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
from setuptools import setup
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name="python-keycloak-api-client",
version="0.13.2",
description="Client for Keycloak Api (mostly users and impersonation)",
keywords="keycloak,client,api",
long_description=long_description,
long_description_content_type="text/markdown",
author="Szymon Marcinkowski",
license="MIT",
url="https://github.com/masterplandev/python-keycloak-api-client",
packages=["keycloak_api_client"],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
install_requires=[
"attrs>=19.3",
"requests>=2.23",
],
extras_require={
"dev": ["pytest>=6.2", "ruff>=0.7.0", "ruff>=0.7.0", "pytest-vcr>=1.0.2"]
},
)