This repository has been archived by the owner on Feb 23, 2023. It is now read-only.
forked from transferwise/pipelinewise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
79 lines (76 loc) · 2.82 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
from setuptools import find_packages, setup
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
setup(name='pipelinewise',
version='0.27.0',
description='PipelineWise',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='TransferWise',
url='https://github.com/transferwise/pipelinewise',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only'
],
install_requires=[
'argparse==1.4.0',
'tabulate==0.8.2',
'PyYAML==5.1.0',
'ansible==2.7.16',
'Jinja2==2.10.1',
'joblib==0.16.0',
'idna==2.7',
'PyMySQL==0.7.11',
'psycopg2-binary==2.8.5',
'snowflake-connector-python==2.3.6',
'pipelinewise-singer-python==1.*',
'singer-encodings==0.0.*',
'python-dateutil<2.8.1',
'messytables==0.15.*',
'python-pidfile==3.0.0',
'pre-commit==1.21.0',
'pymongo==3.10.*',
'ujson==2.0.*',
'tzlocal==2.0.*',
'slackclient==2.7.*',
'psutil==5.7.2'
],
extras_require={
'test': [
'pytest==5.0.1',
'pytest-dependency==0.4.0',
'coverage==4.5.3',
'python-dotenv==0.10.3',
'mock==3.0.5',
'pylint==2.4.4',
'unify==0.5'
]
},
entry_points={
'console_scripts': [
'pipelinewise=pipelinewise.cli:main',
'mysql-to-snowflake=pipelinewise.fastsync.mysql_to_snowflake:main',
'postgres-to-snowflake=pipelinewise.fastsync.postgres_to_snowflake:main',
'mysql-to-redshift=pipelinewise.fastsync.mysql_to_redshift:main',
'postgres-to-redshift=pipelinewise.fastsync.postgres_to_redshift:main',
'mysql-to-postgres=pipelinewise.fastsync.mysql_to_postgres:main',
'postgres-to-postgres=pipelinewise.fastsync.postgres_to_postgres:main',
's3-csv-to-snowflake=pipelinewise.fastsync.s3_csv_to_snowflake:main',
's3-csv-to-postgres=pipelinewise.fastsync.s3_csv_to_postgres:main',
's3-csv-to-redshift=pipelinewise.fastsync.s3_csv_to_redshift:main',
'mongodb-to-snowflake=pipelinewise.fastsync.mongodb_to_snowflake:main',
'mongodb-to-postgres=pipelinewise.fastsync.mongodb_to_postgres:main',
]
},
packages=find_packages(exclude=['tests*']),
package_data={
'schemas': [
'pipelinewise/cli/schemas/*.json'
],
'pipelinewise': [
'logging.conf',
'logging_debug.conf'
]
},
include_package_data=True)