forked from singer-io/tap-fullstory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 814 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='tap-fullstory',
version='1.0.4',
description='Singer.io tap for extracting data from the FullStory API',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_fullstory'],
install_requires=[
'singer-python==1.9.1',
'requests==2.20.0',
'backoff==1.3.2',
'pendulum==1.2.0',
'ijson==2.3'
],
entry_points='''
[console_scripts]
tap-fullstory=tap_fullstory:main
''',
packages=['tap_fullstory'],
package_data = {
'tap_fullstory/schemas': [
'events.json'
]
},
include_package_data=True,
)