forked from transferwise/pipelinewise-tap-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.12 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
32
33
34
35
36
37
#!/usr/bin/env python
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='pipelinewise-tap-postgres',
version='2.1.0',
description='Singer.io tap for extracting data from PostgresSQL - PipelineWise compatible',
long_description=long_description,
long_description_content_type='text/markdown',
author='Wise',
url='https://github.com/transferwise/pipelinewise-tap-postgres',
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 3 :: Only'
],
python_requires=">=3.7,<3.10",
install_requires=[
'pipelinewise-singer-python==1.*',
'psycopg2-binary==2.9.5',
'strict-rfc3339==0.7',
],
extras_require={
"test": [
'pytest==7.2.2',
'pylint==2.12.*',
'pytest-cov==4.0.0'
]
},
entry_points='''
[console_scripts]
tap-postgres=tap_postgres:main
''',
packages=['tap_postgres', 'tap_postgres.sync_strategies']
)