1
0
mirror of synced 2026-01-08 03:06:34 -05:00

Cleanup Python packages (#2440)

This commit is contained in:
Sherif A. Nada
2021-03-15 01:24:21 -07:00
committed by GitHub
parent 556d0a6239
commit 2139a9656b
185 changed files with 301 additions and 8520 deletions

View File

@@ -30,15 +30,6 @@ setup(
author="Airbyte",
author_email="contact@airbyte.io",
packages=find_packages(),
install_requires=["airbyte-protocol", "base-python"],
install_requires=["airbyte-protocol", "base-python", "pytest==6.1.2"],
package_data={"": ["*.json"]},
setup_requires=["pytest-runner"],
tests_require=["pytest"],
extras_require={
# Dependencies required by the main package but not integration tests should go in main. Deps required by
# integration tests but not the main package go in tests. Deps required by both should go in
# install_requires.
"main": [],
"tests": ["airbyte-python-test", "pytest"],
},
)