-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
55 lines (51 loc) · 1.77 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
#!/usr/bin/env python
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == "__main__":
setup(
name="flask-rebar-auth0",
version="0.2.1",
author="Emile Fugulin",
author_email="[email protected]",
description="Flask-Rebar-Auth0 is a simple Flask-Rebar authenticator for Auth0",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["flask", "flask-rebar", "auth0"],
license="MIT",
packages=["flask_rebar_auth0"],
include_package_data=True,
install_requires=[
"flask-rebar>=1.0.0,<2",
"Flask>=0.10,<2",
"requests>=2.20.0,<3",
"python-jose>=3.0.1,<4",
"cryptography>=3.2,<4",
],
extras_require={
"dev": [
"pytest",
"pytest-cov",
"pytest-mock",
"requests-mock",
"black",
"codecov",
]
},
url="https://github.com/Sytten/flask-rebar-auth0",
classifiers=[
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)