forked from singer-io/singer-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 829 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
#!/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'
],
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,
)