/ source-app-store / 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_app_store", 9 description="Source implementation for Apple Store 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 17 ], 18 #package_data={"": ["*.json", "*.yaml", "schemas/*.json", "schemas/shared/*.json"]}, 19 package_data={ 20 "source_app_store": ["schemas/*.json", "*.yaml"], 21 }, 22 entry_points={ 23 "console_scripts": [ 24 "source-app-store=source_app_store.run:run", 25 ], 26 }, 27 ) 28