forked from pycasbin/postgresql-watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 780 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages, __version__
with open("README.md", "r") as readme_file:
readme = readme_file.read()
requirements = ["casbin==0.8.4", "psycopg2-binary==2.8.6", "black==20.8b1"]
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/pycasbin/postgresql-watcher",
packages=find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License",
],
)