blob: 53fd743b0d4651b01929b184ccb538dbfe05a435 [file] [log] [blame]
from setuptools import setup, find_packages, __version__
from os import path
desc_file = "README.md"
with open(desc_file, "r") as fh:
long_description = fh.read()
here = path.abspath(path.dirname(__file__))
# get the dependencies and installs
with open(path.join(here, "requirements.txt"), encoding="utf-8") as f:
all_reqs = f.read().split("\n")
install_requires = [x.strip() for x in all_reqs if "git+" not in x]
setup(
name="casbin_databases_adapter",
author="Isa Setiawan Abdurrazaq",
author_email="isasetiawan@protonmail.com",
description="This is an Adapter for PyCasbin that implemented using Databases connection to achieve async process",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/officialpycasbin/casbin-databases-adapter",
keywords=[
"casbin",
"asynccasbin",
"async",
"databases",
"casbin-adapter",
"rbac",
"access control",
"abac",
"acl",
"permission",
],
packages=find_packages(),
install_requires=install_requires,
python_requires=">=3.3",
license="Apache 2.0",
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)