1
0
mirror of synced 2025-12-19 18:14:56 -05:00
Files
airbyte/airbyte-integrations/base-python/airbyte_protocol/setup.py
Jared Rhizor 88527df94a python source jsonschema support (#520)
* support using jsonschema types within sources + spec/read support for exchangeratesapi

* remove unnecessary key sorting

* projectDir/../.. -> rootDir

* better log and record handling

* output state messages and exclude outputting schema as message

* fix test

* hide warnings

* fmt
2020-10-09 08:45:23 -07:00

13 lines
397 B
Python

from setuptools import setup
setup(
name='airbyte_protocol',
description='Contains classes representing the schema of the Airbyte protocol.',
author='Airbyte',
author_email='contact@airbyte.io',
packages=['airbyte_protocol'],
install_requires=['PyYAML==5.3.1', 'python-jsonschema-objects==0.3.13'],
package_data={'': ['types/*.yaml']},
include_package_data=True
)