forked from transferwise/pipelinewise-target-redshift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (40 loc) · 1.27 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
41
42
43
#!/usr/bin/env python
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name="pipelinewise-target-redshift",
version="1.6.0",
description="Singer.io target for loading data to Amazon Redshift - PipelineWise compatible",
long_description=long_description,
long_description_content_type='text/markdown',
author="TransferWise",
url='https://github.com/transferwise/pipelinewise-target-redshift',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only'
],
py_modules=["target_redshift"],
install_requires=[
'pipelinewise-singer-python==2.*',
'boto3==1.34.17',
'psycopg[binary]==3.1.17',
'inflection==0.5.1',
'joblib==1.3.2',
'zstandard ==0.22.0'
],
extras_require={
"test": [
"pylint==3.0.3",
"pytest==7.4.4",
"mock==5.1.0",
"coverage==7.4.0"
]
},
entry_points="""
[console_scripts]
target-redshift=target_redshift:main
""",
packages=["target_redshift"],
package_data = {},
include_package_data=True,
)