1
0
mirror of synced 2026-01-10 09:04:48 -05:00
Files
airbyte/airbyte-integrations/connectors/source-toggl/setup.py
Marcos Marx 9ccc7db3cc 🎉 New Source: Toggl (#19307)
* init commit

* clean schema

* add streams

* add docs

* start and end date mandatory

* fix doc

* add toggl to source def

* generate source seed

Co-authored-by: Haithem SOUALA <haithem.souala@woopit.fr>
Co-authored-by: Haithem SOUALA <75131226+haithem-souala@users.noreply.github.com>
2022-11-10 18:40:56 -03:00

30 lines
626 B
Python

#
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
#
from setuptools import find_packages, setup
MAIN_REQUIREMENTS = [
"airbyte-cdk~=0.1",
]
TEST_REQUIREMENTS = [
"pytest~=6.1",
"pytest-mock~=3.6.1",
"source-acceptance-test",
]
setup(
name="source_toggl",
description="Source implementation for Toggl.",
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,
},
)