-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1.01 KB
/
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
#!/usr/bin/env python
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='tap-google-my-business',
version='1.0.0',
description='Singer Tap for Google My Business API',
long_description=long_description,
long_description_content_type='text/markdown',
author='360 Agency',
url='https://github.com/ReptilianBrain/tap-google-my-business',
classifiers=[
'Programming Language :: Python :: 3 :: Only'
],
py_modules=['tap_google_my_business'],
install_requires=[
'singer-python==5.9.0',
'google-api-python-client==1.7.11',
'oauth2client==4.1.3'
],
entry_points='''
[console_scripts]
tap-google-my-business=tap_google_my_business:main
''',
packages=['tap_google_my_business'],
package_dir={'tap_google_my_business': 'tap_google_my_business'},
package_data={'tap_google_my_business': ["defaults/default_catalog.json"]}
)