-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·31 lines (26 loc) · 1.05 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
#!/usr/bin/env python
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Copyright (c) 2021 Mozilla Corporation
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="authzerolib",
py_modules=['authzero'],
version="1.1.0",
author="Mozilla IAM",
author_email="[email protected]",
description=("A super simple and basic client lib for Auth0"),
long_description=read("README.md"),
long_description_content_type="text/markdown",
license="MPL-2.0",
keywords="auth0 iam library",
url="https://github.com/mozilla-iam/authzerolib",
install_requires=["requests"],
classifiers=["Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)"]
)