* 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
13 lines
397 B
Python
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
|
|
)
|