forked from transferwise/pipelinewise
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
66 lines (63 loc) · 2.13 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
#!/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.15.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',
'joblib==0.13.2',
'attrs==17.4.0',
'idna==2.7',
'PyMySQL==0.7.11',
'psycopg2==2.8.2',
'snowflake-connector-python==2.0.3',
'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'
],
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',
's3-csv-to-snowflake=pipelinewise.fastsync.s3_csv_to_snowflake:main'
]
},
packages=find_packages(exclude=['tests*']),
package_data={
'schemas': [
'pipelinewise/cli/schemas/*.json'
],
'pipelinewise': [
'logging.conf'
]
},
include_package_data=True)