forked from imcallister/singer-tap-amazon-mws
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (23 loc) · 846 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='singer-tap-amazon-mws',
version='0.0.3',
description='Singer.io tap for extracting data from the Amazon MWS API. Forked from https://github.com/fishtown-analytics/tap-amazon-mws',
author='ian@mcallisternevins.com',
url='https://github.com/imcallister/singer-tap-amazon-mws',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['singer_tap_amazon_mws'],
install_requires=[
'tap-framework==0.0.4',
'mws==0.8.10',
],
entry_points='''
[console_scripts]
singer-tap-amazon-mws=singer_tap_amazon_mws:main
''',
packages=find_packages(),
package_data={
'singer_tap_amazon_mws': [
'schemas/*.json'
]
})