forked from GeneralMills/azure-ad-token-verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 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
32
33
34
35
36
37
38
39
40
import io
import os
from setuptools import setup
dir = os.path.dirname(__file__)
with io.open(os.path.join(dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='aad-token-verify',
version='0.2.1',
description='A python utility library to verify an Azure Active Directory OAuth token',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/GeneralMills/azure-ad-token-verify',
author=['Daniel Thompson'],
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=3.7',
install_requires=[
'requests>=2.25.1,<3',
'PyJWT>=2.1.0,<3',
'cryptography>=42.0.0,<43',
'cachetools>=5.3.1,<6'
],
keywords='azure ad token oauth verify jwt',
packages=['aad_token_verify'],
)