forked from singer-io/tap-chargebee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 767 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='tap-chargebee',
version='1.3.4',
description='Singer.io tap for extracting data from the Chargebee API',
author='dwallace@envoy.com',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_chargebee'],
install_requires=[
'tap-framework==0.1.1'
],
entry_points='''
[console_scripts]
tap-chargebee=tap_chargebee:main
''',
packages=find_packages(),
package_data={
'tap_chargebee': [
'schemas/common/*.json',
'schemas/item_model/*.json',
'schemas/plan_model/*.json'
]
},
include_package_data=True)