-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·30 lines (28 loc) · 981 Bytes
/
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
#!/usr/bin/python -tt
from setuptools import find_packages, setup
exec(compile(open("openidc_client/release.py").read(),
"openidc_client/release.py", 'exec'))
setup(
name='openidc-client',
version=VERSION,
description='OpenID Connect Client with caching and token management',
author='Patrick Uiterwijk',
author_email='[email protected]',
license='MIT',
keywords='OpenID Connect Client',
url='https://github.com/puiterwijk/python-openidc-client',
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=[
'requests',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
test_suite='tests',
)