forked from singer-io/tap-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 715 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 715 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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-postgres',
version='0.2.1',
description='Singer.io tap for extracting data from PostgreSQL',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
install_requires=[
'singer-python==5.18.0',
'psycopg2-binary==2.9.11',
],
extras_require={
'dev': [
'ipdb',
'pylint==2.6.0',
'nose==1.3.7',
]
},
entry_points='''
[console_scripts]
tap-postgres=tap_postgres:main
''',
packages=['tap_postgres', 'tap_postgres.sync_strategies']
)