forked from cubedevinc/target-postgres
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (31 loc) · 787 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (31 loc) · 787 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
27
28
29
30
31
32
#!/usr/bin/env python
from setuptools import setup
setup(
name="target-postgres",
version="1.2.4",
description="Singer.io target for Postgres",
author="Statsbot",
url="https://statsbot.co",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["target_postgres"],
install_requires=[
"singer-python==5.1.1",
"psycopg2==2.9.3", # Pinned to match fuji
"inflection==0.3.1"
],
extras_require={
'dev': [
'pylint',
'flake8',
'pytest==7.0.1',
'pytest-cov',
]
},
entry_points="""
[console_scripts]
target-postgres=target_postgres:main
""",
packages=["target_postgres"],
package_data={},
include_package_data=True,
)