-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
34 lines (32 loc) · 869 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='target-stitch',
version='4.0.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.31.0',
'singer-python==6.0.0',
'psutil==5.6.6',
'simplejson==3.11.1',
'aiohttp==3.8.5',
'ciso8601',
],
extras_require={
'dev': [
'nose==1.3.7',
'astroid==2.1.0',
'pylint==2.1.1'
]
},
entry_points='''
[console_scripts]
target-stitch=target_stitch:main
''',
packages=['target_stitch'],
)