forked from singer-io/tap-braintree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 758 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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-braintree',
version='0.4.6',
description='Singer.io tap for extracting data from the Braintree API',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_braintree'],
install_requires=[
'singer-python==1.2.0',
'requests==2.12.4',
'braintree==3.34.0',
],
entry_points='''
[console_scripts]
tap-braintree=tap_braintree:main
''',
packages=['tap_braintree'],
package_data = {
'tap_braintree/schemas': [
'transactions.json',
],
},
include_package_data=True,
)