-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
31 lines (27 loc) · 1.03 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
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="[email protected]",
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=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",
],
)