forked from singer-io/target-stitch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 639 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 639 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
#!/usr/bin/env python
from setuptools import setup
setup(name='target-stitch',
version='1.7.0',
description='Singer.io target for the Stitch API',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['target_stitch'],
install_requires=[
'jsonschema==2.6.0',
'mock==2.0.0',
'requests==2.18.4',
'singer-python==5.0.0',
'psutil==5.3.1'
],
entry_points='''
[console_scripts]
target-stitch=target_stitch:main
''',
packages=['target_stitch'],
)