forked from transferwise/pipelinewise-tap-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.18 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", "r") as fh:
long_description = fh.read()
setup(name='pipelinewise-tap-mysql',
version='1.6.0',
description='Singer.io tap for extracting data from MySQL & MariaDB - PipelineWise compatible',
long_description=long_description,
long_description_content_type='text/markdown',
author='Wise',
url='https://github.com/transferwise/pipelinewise-tap-mysql',
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 3 :: Only'
],
py_modules=['tap_mysql'],
install_requires=[
'pendulum==2.1.2',
'pipelinewise-singer-python==1.*',
'mysql-replication==0.43',
'PyMySQL==1.1.*',
'plpygis==0.2.1',
'tzlocal==2.1',
],
extras_require={
'test': [
'nose==1.3.*',
'pylint==2.13.2',
'nose-cov==1.6'
]
},
entry_points='''
[console_scripts]
tap-mysql=tap_mysql:main
''',
packages=['tap_mysql', 'tap_mysql.sync_strategies'],
)