-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
62 lines (53 loc) · 1.82 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
60
61
62
"""
Python SDK for OpenFGA
API version: 1.x
Website: https://openfga.dev
Documentation: https://openfga.dev/docs
Support: https://openfga.dev/community
License: [Apache-2.0](https://github.com/openfga/python-sdk/blob/main/LICENSE)
NOTE: This file was auto generated by OpenAPI Generator (https://openapi-generator.tech). DO NOT EDIT.
"""
import pathlib
import pkg_resources
from setuptools import find_packages, setup
NAME = "openfga-sdk"
VERSION = "0.9.0"
REQUIRES = []
with pathlib.Path("requirements.txt").open() as requirements_txt:
REQUIRES = [
str(requirement)
for requirement in pkg_resources.parse_requirements(requirements_txt)
]
this_directory = pathlib.Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name=NAME,
version=VERSION,
description="A high performance and flexible authorization/permission engine built for developers and inspired by Google Zanzibar.",
author="OpenFGA (https://openfga.dev)",
author_email="[email protected]",
url="https://github.com/openfga/python-sdk",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords=[
"openfga",
"authorization",
"fga",
"fine-grained-authorization",
"rebac",
"zanzibar",
],
install_requires=REQUIRES,
python_requires=">=3.10",
packages=find_packages(exclude=["test"]),
include_package_data=True,
license="Apache-2.0",
long_description_content_type="text/markdown",
long_description=long_description,
)