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_google_store",
 9      description="Source implementation for Google Play 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          "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_google_store": ["schemas/*.json", "*.yaml"],
22      },
23      entry_points={
24          "console_scripts": [
25              "source-google-store=source_google_store.run:run",
26          ],
27      },
28  ) 
29