forked from borisrozumnuk/cognitojwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (51 loc) · 1.27 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
52
53
54
55
56
57
58
59
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = [
'python-jose'
]
sync_require = [
'requests'
]
async_require = [
'aiofile',
'aiohttp',
'async_lru'
]
test_require = {
'requests',
'aiohttp',
'async_lru',
'pytest==5.4.0',
'pytest-asyncio==0.12.0',
'attrs==19.1.0'
}
setup(
name='cognitojwt',
version='1.2.2',
description='Decode and verify Amazon Cognito JWT tokens',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/borisrozumnuk/cognitojwt',
author='Boris Rozumniuk',
author_email='[email protected]',
license='MIT',
platforms='Any',
install_requires=install_requires,
extras_require={
'sync': sync_require,
'async': async_require,
'test': test_require
},
keywords='Amazon Cognito JWT',
packages=['cognitojwt'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
],
zip_safe=False
)