forked from singer-io/tap-amazon-sp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (29 loc) · 911 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
31
32
from setuptools import find_packages, setup
from os.path import abspath, dirname, join
ROOT_DIR = abspath(dirname(__file__))
with open(join(ROOT_DIR, "README.md"), encoding="utf-8") as f:
readme = f.read()
setup(
name="tap-amazon-sp",
version="0.1.4",
description="Singer ETL tap for extracting data from the Amazon Selling Partner API",
long_description=readme,
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_amazon_sp"],
install_requires=[
'backoff==1.8.0',
'singer-python==5.12.2',
'python-amazon-sp-api==0.12.4'
],
entry_points="""
[console_scripts]
tap-amazon-sp=tap_amazon_sp:main
""",
packages=find_packages(exclude=["tests"]),
package_data = {
"schemas": ["tap_amazon_sp/schemas/*.json"]
},
include_package_data=True,
)