forked from jdennis/keycloak-httpd-client-install
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (28 loc) · 1.26 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
#!/usr/bin/python
from distutils.core import setup
name = 'keycloak-httpd-client-install'
setup(name=name,
version='1.3',
description='Tools to configure Apache HTTPD as Keycloak client',
author='John Dennis',
author_email='jdennis@redhat.com',
url='https://github.com/latchset/keycloak-httpd-client-install',
license='GPLv3',
packages=['keycloak_httpd_client'],
scripts=['bin/keycloak-httpd-client-install',
'bin/keycloak-rest'],
data_files=[('/usr/share/{name}/templates'.format(name=name),
['templates/mellon_httpd.conf',
'templates/sp_metadata.tpl',
'templates/oidc-client-registration.tpl',
'templates/oidc-client-representation.tpl',
'templates/oidc_httpd.conf'])],
requires=['requests', 'requests_oauthlib', 'jinja2'],
classifiers=[ # see https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
],
)