-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathsetup.py
executable file
·36 lines (35 loc) · 984 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
33
34
35
36
#!/usr/bin/env python
from setuptools import setup
from setuptools import find_packages
setup(
name="tap-shopify",
version="2.0.1",
description="Singer.io tap for extracting Shopify data",
author="Stitch",
url="http://github.com/singer-io/tap-shopify",
classifiers=["Programming Language :: Python :: 3 :: Only"],
python_requires='>=3.5.2',
py_modules=["tap_shopify"],
install_requires=[
# Important: review the monkey-patched method in the GraphQL client when upgrading this dependency.
"ShopifyAPI==12.6.0",
"singer-python==6.0.0",
],
extras_require={
'dev': [
'pylint==3.0.3',
'ipdb',
'requests==2.20.0',
'nose',
]
},
entry_points="""
[console_scripts]
tap-shopify=tap_shopify:main
""",
packages=find_packages(),
package_data = {
"schemas": ["tap_shopify/schemas/*.json"]
},
include_package_data=True,
)