forked from liorrozen/source-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 640 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 640 Bytes
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
from distutils.core import setup
setup(
name="panoply_postgres",
version="2.3.6",
description="Panoply Data Source for Postgres",
author="Panoply Dev Team",
author_email="support@panoply.io",
url="http://panoply.io",
install_requires=[
"panoply-python-sdk==1.6.0",
"psycopg2==2.7.1",
"backoff==1.4.3"
],
extras_require={
"test": [
"pycodestyle==2.5.0",
"coverage==4.3.4",
"mock==2.0.0"
]
},
# place this package within the panoply package namespace
package_dir={"panoply": ""},
packages=["panoply.postgres"]
)