-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
34 lines (32 loc) · 972 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='singer-tools',
version='0.4.1',
description='Tools for working with Singer.io Taps and Targets',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
install_requires=[
'attrs==16.3.0',
'jsonschema==2.6.0',
'singer-python>=0.2.1',
'strict-rfc3339==0.7',
'terminaltables==3.1.0'
],
extras_require={
'dev': [
'ipdb==0.11',
'pylint==2.5.3',
'nose'
]
},
packages=['singertools'],
entry_points='''
[console_scripts]
singer-infer-schema=singertools.infer_schema:main
singer-check-tap=singertools.check_tap:main
singer-release=singertools.release:main
diff-jsonl=singertools.diff_jsonl:main
''',
include_package_data=True,
)