-
Notifications
You must be signed in to change notification settings - Fork 141
/
setup.py
executable file
·40 lines (38 loc) · 1.02 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
setup(name='tap-facebook',
version='1.20.2',
description='Singer.io tap for extracting data from the Facebook Ads API',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_facebook'],
install_requires=[
'attrs==17.3.0',
'backoff==2.2.1',
'facebook_business==19.0.2',
'pendulum==1.2.0',
'requests==2.20.0',
'singer-python==6.0.0',
],
extras_require={
'dev': [
'pylint',
'ipdb',
'nose',
]
},
entry_points='''
[console_scripts]
tap-facebook=tap_facebook:main
''',
packages=['tap_facebook'],
package_data = {
'tap_facebook/schemas': [
# add schema.json filenames here
],
'tap_facebook/schemas/shared': [
]
},
include_package_data=True,
)