-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
46 lines (42 loc) · 1.64 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
42
43
44
45
46
from setuptools import setup, find_packages
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="django-keycloak-auth",
version="1.0.0",
packages=find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=[
"cryptography>=3.4.0",
"Django",
"djangorestframework>=3.10.0",
"requests>=2.24.0",
"PyJWT>=2.8.0",
],
# metadata to display on PyPI
author="Marcelo Vinicius",
author_email="[email protected]",
description="Django Keycloak Auth is Python package providing access to the Keycloak API.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="keycloak django roles authentication authorization",
url="https://github.com/marcelo225/django-keycloak-auth",
project_urls={
'Funding': 'https://donate.pypi.org',
'Say Thanks!': 'https://github.com/marcelo225/django-keycloak-auth',
'Source': 'https://github.com/marcelo225/django-keycloak-auth',
'Tracker': 'https://github.com/marcelo225/django-keycloak-auth/issues',
},
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5"
],
)