forked from singer-io/tap-mixpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 726 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 726 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='tap-mixpanel',
version='1.6.0',
description='Singer.io tap for extracting data from the mixpanel API',
author='jeff.huth@bytecode.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_mixpanel'],
install_requires=[
'backoff==2.2.1',
'requests==2.22.0',
'singer-python==6.0.0',
'jsonlines==1.2.0'
],
entry_points='''
[console_scripts]
tap-mixpanel=tap_mixpanel:main
''',
packages=find_packages(),
package_data={
'tap_mixpanel': [
'schemas/*.json'
]
})