forked from adithyasampatoor/okta_jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (40 loc) · 1.39 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import async_okta_jwt
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
long_description = readme.read()
def get_packages(package):
"""
Return root package and all sub-packages.
"""
return [
dirpath
for dirpath, dirnames, filenames in os.walk(package)
if os.path.exists(os.path.join(dirpath, '__init__.py'))
]
extras_require = {}
setup(
name="async_okta_jwt",
version=async_okta_jwt.__version__,
author="Adithya Sampatoor, Yevgen Pukhta",
author_email="[email protected], [email protected]",
description="Okta JWT Access Token verifier",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ypukhta/okta_jwt",
packages=get_packages('async_okta_jwt'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Utilities'
],
extras_require=extras_require,
tests_require=['mock', 'ddt', 'asynctest'],
install_requires=['six <2.0', 'httpx', 'python-jose']
)