* Added Source Weatherstack
* Clean Code. Took out TODO's.
* Added link to get API key
* Remade check_connection and added Constants
* Added WeatherStack to source_definitions and updated Catalog.json
* deleted configured_catalog.json (not in use)
* Revert "deleted configured_catalog.json (not in use)"
This reverts commit 1b40726335.
* chore: revert change
* chore: format and lint
* chore: attempt to patch unit tests
* Added Classes for Unit tests
* chore: fix coverage
* chore: fix unit tests for weatherstream
* chore: fix weather stack unittests
* chore: fix unittests fr weatherstack
* Added schemas to catalogue
* Update setup.py
* Update build.gradle
* Delete sample_state.json
* support for various account types
* Update source.py
* Delete .dccache
* Update source_definitions.yaml
* Update source_specs.yaml
Co-authored-by: Vincent Koc <koconder@users.noreply.github.com>
Co-authored-by: Vincent Koc <koconder@gmail.com>
Co-authored-by: Vincent Koc <vincentkoc@ieee.org>
30 lines
640 B
Python
30 lines
640 B
Python
#
|
|
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
MAIN_REQUIREMENTS = [
|
|
"airbyte-cdk~=0.2",
|
|
]
|
|
|
|
TEST_REQUIREMENTS = [
|
|
"pytest~=6.1",
|
|
"pytest-mock~=3.6.1",
|
|
"source-acceptance-test",
|
|
]
|
|
|
|
setup(
|
|
name="source_weatherstack",
|
|
description="Source implementation for Weatherstack.",
|
|
author="Airbyte",
|
|
author_email="contact@airbyte.io",
|
|
packages=find_packages(),
|
|
install_requires=MAIN_REQUIREMENTS,
|
|
package_data={"": ["*.json", "*.yaml", "schemas/*.json", "schemas/shared/*.json"]},
|
|
extras_require={
|
|
"tests": TEST_REQUIREMENTS,
|
|
},
|
|
)
|