forked from gonzalo123/pglistener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 849 Bytes
/
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
with open("README_PGLISTENER.md", "r") as fh:
long_description = fh.read()
setup_args = dict(
name="pglistener-gonzalo123",
version="1.0.2",
author="Gonzalo Ayuso",
author_email="[email protected]",
description="psycopg2 db listener",
long_description=long_description,
license='MIT',
long_description_content_type="text/markdown",
keywords=['psycopg2'],
url="https://github.com/gonzalo123/pglistener",
packages=['pg_listener'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.5'
)
install_requires = [
'psycopg2-binary>=2.8.6'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)