forked from JamieSplitit/pipelinewise-tap-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.28 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', 'r') as fh:
long_desc = fh.read()
setup(name='pipelinewise-tap-mongodb',
version='1.3.0',
description='Singer.io tap for extracting data from MongoDB - Pipelinewise compatible',
long_description=long_desc,
long_description_content_type='text/markdown',
author='Wise',
url='https://github.com/transferwise/pipelinewise-tap-mongodb',
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
py_modules=['tap_mongodb'],
install_requires=[
'pipelinewise-singer-python==1.*',
'pymongo[aws]==3.12.*',
'tzlocal==2.1.*',
'terminaltables==3.1.*',
'dnspython==2.1.*',
],
extras_require={
'dev': [
'pylint==2.12',
'ipdb==0.13.*'
],
'test': [
'pytest==6.2.5',
'pytest-cov==3.0.0'
]
},
entry_points='''
[console_scripts]
tap-mongodb=tap_mongodb:main
''',
packages=['tap_mongodb', 'tap_mongodb.sync_strategies'],
)