forked from transferwise/pipelinewise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
83 lines (80 loc) · 3.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
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
80
81
82
83
#!/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.37.2',
description='PipelineWise',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Wise',
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.9',
'PyYAML==6.0',
'ansible==4.7.0',
'Jinja2==3.0.2',
'joblib==1.1.0',
'PyMySQL==0.7.11',
'psycopg2-binary==2.8.6',
'snowflake-connector-python[pandas]==2.4.6',
'google-cloud-bigquery==2.31.0',
'pipelinewise-singer-python==1.*',
'singer-encodings==0.0.*',
'messytables==0.15.*',
'python-pidfile==3.0.0',
'pre-commit==2.15.0',
'pymongo>=3.10,<3.13',
'tzlocal>=2.0,<4.1',
'slackclient>=2.7,<2.10',
'psutil==5.8.0',
'ujson>=4.1,<4.3',
'dnspython==2.1.*',
],
extras_require={
'test': [
'flake8==4.0.1',
'pytest==6.2.5',
'pytest-dependency==0.4.0',
'pytest-cov==3.0.0',
'python-dotenv==0.19.1',
'pylint==2.10.2',
'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',
'mysql-to-bigquery=pipelinewise.fastsync.mysql_to_bigquery:main',
'postgres-to-bigquery=pipelinewise.fastsync.postgres_to_bigquery: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',
's3-csv-to-bigquery=pipelinewise.fastsync.s3_csv_to_bigquery:main',
'mongodb-to-snowflake=pipelinewise.fastsync.mongodb_to_snowflake:main',
'mongodb-to-postgres=pipelinewise.fastsync.mongodb_to_postgres:main',
'mongodb-to-bigquery=pipelinewise.fastsync.mongodb_to_bigquery:main',
]
},
packages=find_packages(exclude=['tests*']),
package_data={
'schemas': [
'pipelinewise/cli/schemas/*.json'
],
'pipelinewise': [
'logging.conf',
'logging_debug.conf'
]
},
include_package_data=True)