1
0
mirror of synced 2026-01-02 12:02:47 -05:00
Files
airbyte/tools/ci_common_utils/setup.py
Maksym Pavlenok d3b0c998b8 🎉 CI secrets: full migration to GSM (#8561)
* add python packages for CI scripts

* add tox config for all subpackages

* draft version

* init venv for scripts

* fix venv

* remove used comments

* fix run test

* change base folder

* update secret format

* update docs

* remove an unused file

* remove github secrets logic fully

* fix base_folder balue

* add functions desc
2021-12-15 15:08:46 +02:00

25 lines
567 B
Python

#
# Copyright (c) 2021 Airbyte, Inc., all rights reserved.
#
from setuptools import find_packages, setup
MAIN_REQUIREMENTS = ["cryptography", "requests", "pyjwt~=2.3.0"]
TEST_REQUIREMENTS = ["requests-mock"]
setup(
version="0.0.0",
name="ci_common_utils",
description="Suite of all often used classes and common functions",
author="Airbyte",
author_email="contact@airbyte.io",
packages=find_packages(),
install_requires=MAIN_REQUIREMENTS,
python_requires='>=3.7',
extras_require={
"tests": TEST_REQUIREMENTS,
},
)