forked from miroapp/tap-appstore
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 864 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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-appstore',
version='0.2.2',
description='Singer.io tap for extracting data from the App Store Connect API',
author='JustEdro',
url='https://github.com/JustEdro',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap-appstore'],
install_requires=[
'singer-python>=5.2.3',
'appstoreconnect @ git+https://github.com/sixcodes/appstoreconnectapi.git@master#egg=appstoreconnectapi',
'pytz>=2018.4'
],
entry_points='''
[console_scripts]
tap-appstore=tap_appstore:main
''',
packages=['tap_appstore'],
package_data={
'tap_appstore/schemas': [
'summary_sales_report.json'
],
},
include_package_data=True,
)