-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 799 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import find_packages, setup
MAIN_REQUIREMENTS = [
"airbyte-cdk==0.80.0",
"google-ads==24.0.0",
"protobuf==4.25.2",
"pendulum<3.0.0"
]
TEST_REQUIREMENTS = [
"pytest~=6.1",
"pytest-mock~=3.12.0",
"freezegun~=1.4.0",
"requests-mock~=1.11.0"
]
setup(
entry_points={
"console_scripts": [
"source-google-ads=source_google_ads.run:run",
],
},
name="source_google_ads",
description="Source implementation for Google Ads.",
author="Airbyte",
author_email="[email protected]",
packages=find_packages(),
install_requires=MAIN_REQUIREMENTS,
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
extras_require={
"tests": TEST_REQUIREMENTS,
},
)