forked from singer-io/tap-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (33 loc) · 839 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="tap-shopify",
version="1.5.0",
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=[
"ShopifyAPI==8.4.1",
"singer-python==5.12.1",
],
extras_require={
'dev': [
'pylint==2.7.4',
'ipdb',
'requests==2.20.0',
'nose',
]
},
entry_points="""
[console_scripts]
tap-shopify=tap_shopify:main
""",
packages=["tap_shopify"],
package_data = {
"schemas": ["tap_shopify/schemas/*.json"]
},
include_package_data=True,
)