/ source-luma-fetcher / setup.py
setup.py
1 """ 2 Setup file for the Google Play Source connector. 3 """ 4 5 from setuptools import setup, find_packages 6 7 setup( 8 name="source_luma_fetcher", 9 description="Source implementation for Luma Data.", 10 author="Claire", 11 author_email="claire@status.im", 12 packages=find_packages(), 13 install_requires=[ 14 "airbyte-cdk~=0.2", 15 "google-api-python-client>=2.0.0", 16 "oauth2client>=4.1.3", 17 "httplib2>=0.20.0", 18 ], 19 #package_data={"": ["*.json", "*.yaml", "schemas/*.json", "schemas/shared/*.json"]}, 20 package_data={ 21 "source_luma_fetcher": ["schemas/*.json", "*.yaml"], 22 }, 23 entry_points={ 24 "console_scripts": [ 25 "source-luma-fetcher=source_luma_fetcher.run:run", 26 ], 27 }, 28 )