forked from transferwise/pipelinewise-target-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.17 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
38
39
40
#!/usr/bin/env python
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name="pipelinewise-target-postgres",
version="2.1.2",
description="Singer.io target for loading data to PostgreSQL - PipelineWise compatible",
long_description=long_description,
long_description_content_type='text/markdown',
author="TransferWise",
url='https://github.com/transferwise/pipelinewise-target-postgres',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only'
],
py_modules=["target_postgres"],
install_requires=[
'pipelinewise-singer-python==1.*',
'psycopg2-binary==2.9.5',
'inflection==0.3.1',
'joblib==1.2.0'
],
extras_require={
"test": [
'pytest==6.2.5',
'pylint==2.6.0',
'pytest-cov==2.10.1',
]
},
entry_points="""
[console_scripts]
target-postgres=target_postgres:main
""",
packages=["target_postgres"],
package_data={},
include_package_data=True,
)