forked from goes-funky/tap-airtable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 986 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
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='tap-airtable',
version='0.0.4',
description='Singer.io tap for extracting data from the Airtable API',
author='AIME Mentorinng',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_airtable'],
install_requires=[
'backoff==1.3.2',
'certifi==2018.11.29',
'chardet==3.0.4',
'idna==2.7',
'pendulum==1.2.0',
'python-dateutil>=2.7.5',
'pytz==2018.4',
'pytzdata==2018.7',
'requests==2.26.0',
'simplejson==3.11.1',
'singer-python>=5.4.0',
'python-slugify==4.0.1',
'six==1.12.0',
'tzlocal==1.5.1'
],
entry_points='''
[console_scripts]
tap-airtable=tap_airtable:main
''',
packages=find_packages(),
include_package_data=True,
)