forked from singer-io/tap-mambu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 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
41
42
43
44
45
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='tap-mambu',
version='4.0.4',
description='Singer.io tap for extracting data from the Mambu 2.0 API',
author='[email protected]',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_mambu'],
python_requires='>=3.9',
install_requires=[
'backoff==1.8.0',
'requests==2.31.0',
'singer-python==5.12.2',
'pytz==2022.1',
'requests-ratelimiter==0.5.1'
],
extras_require={
'dev': [
'ipdb',
'pylint==2.5.3',
"mock==5.0.2",
'pytest==6.2.4'
],
'mambu-tests': [
'coverage==6.3.1',
'pylint==2.12.2',
'pytest==6.2.5',
'mock==4.0.3'
],
'mambu-performance': [
'matplotlib==3.5.1'
]
},
entry_points='''
[console_scripts]
tap-mambu=tap_mambu:main
''',
packages=find_packages(),
package_data={
'tap_mambu': [
'helpers/schemas/*.json'
]
})