blob: 7defdfd4448db0b3eeb31babb5905a74e33bdc96 [file] [log] [blame]
from setuptools import setup, find_packages, __version__
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setup(
name="casbin-postgresql-watcher",
author="hsluoyz",
author_email="hsluoyz@gmail.com",
description="Casbin role watcher to be used for monitoring updates to policies for PyCasbin",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/officialpycasbin/postgresql-watcher",
packages=find_packages(),
install_requires=open("requirements.txt").read().splitlines(),
extras_require={
"dev": [
open("dev_requirements.txt").read().splitlines(),
]
},
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",
],
)