-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·32 lines (31 loc) · 876 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='tap-bold',
version='0.4.0',
license='agpl-3.0',
description='Singer.io tap for extracting data from Bold Recurring Orders Subscriptions API',
author='Ori Ben Aharon',
url='http://singer.io',
py_modules=['tap_bold'],
install_requires=[
'singer-python>=5.0.12',
'requests',
],
entry_points="""
[console_scripts]
tap-bold=tap_bold:main
""",
packages=['tap_bold'],
package_data={
'schemas': ['tap_bold/schemas/*.json']
},
keywords=['SINGER', 'TAP'],
include_package_data=True,
download_url='https://github.com/oriskincare/tap-bold/archive/v0.3.0.tar.gz',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
)