forked from Peter-Slump/django-keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (45 loc) · 1.15 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
47
48
49
50
51
import os
from setuptools import setup, find_packages
VERSION = '0.1.2-dev'
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-keycloak',
version=VERSION,
long_description=README,
package_dir={'': 'src'},
packages=find_packages('src'),
extras_require={
'dev': [
'bumpversion==0.5.3',
'twine',
],
'doc': [
'Sphinx==1.4.4',
'sphinx-autobuild==0.6.0',
]
},
setup_requires=[
'pytest-runner',
'python-keycloak-client',
],
install_requires=[
'python-keycloak-client>=0.2.2',
'Django>=1.11',
],
tests_require=[
'pytest-django',
'pytest-cov',
'mock>=2.0',
'factory-boy',
'freezegun'
],
url='https://github.com/Peter-Slump/django-keycloak',
license='MIT',
author='Peter Slump',
author_email='[email protected]',
description='Install Django Keycloak.',
classifiers=[]
)