-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.04 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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='oidc_validators',
version='0.5.3',
description='Validates OIDC token',
url='http://github.com/unit9/oidc-validators-python',
long_description=long_description,
long_description_content_type='text/markdown',
author='Abirafdi Raditya Putra',
author_email='raditya.putra@unit9.com',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=[
'requests',
'cryptography==2.7',
'PyJWT==1.7.1'
],
zip_safe=False,
python_requires='>=3.7',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
],
)