forked from singer-io/tap-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 810 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-mongodb',
version='1.1.0',
description='Singer.io tap for extracting data from MongoDB',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_mongodb'],
install_requires=[
'singer-python==5.8.0',
'pymongo==3.8.0',
'tzlocal==2.0.0',
'terminaltables==3.1.0',
'dnspython==2.1.0'
],
extras_require={
'dev': [
'pylint',
'nose',
'ipdb'
]
},
entry_points='''
[console_scripts]
tap-mongodb=tap_mongodb:main
''',
packages=['tap_mongodb', 'tap_mongodb.sync_strategies'],
)