forked from dbt-labs/tap-amazon-advertising
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (30 loc) · 850 Bytes
/
pyproject.toml
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
35
36
[tool.black]
line-length = 120
[tool.flake8]
max-line-length = 120
extend-ignore = "E203"
[tool.poetry]
name = "tap-amazon-advertising"
version = "0.0.2"
description = "Amazon-Advertising tap"
authors = ["y42 developers <info@y42.com>"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
tap-framework = {git = "https://github.com/airton-muskollari/tap-framework.git"}
pandas = "1.2.0"
[tool.poetry.dev-dependencies]
integrations-testing-framework = {git = "http://github.com/goes-funky/integrations-testing-framework.git"}
pytest = "^7.1.2"
coverage = "^6.4.4"
pytest-cov = "^3.0.0"
bandit = "^1.7.4"
requests = "<=2.26.0"
[tool.poetry.scripts]
tap-amazon-advertising = "tap_amazon_advertising:main"
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"