-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (33 loc) · 839 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (33 loc) · 839 Bytes
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.2.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"],
py_modules=["tap_shopify"],
install_requires=[
"ShopifyAPI==3.1.0",
"singer-python==5.4.1",
],
extras_require={
'dev': [
'pylint',
'ipdb',
'requests==2.20.0',
'aiohttp==3.5.4',
'asyncio==3.4.3'
]
},
entry_points="""
[console_scripts]
tap-shopify=tap_shopify:main
""",
packages=["tap_shopify"],
package_data = {
"schemas": ["tap_shopify/schemas/*.json"]
},
include_package_data=True,
)