-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (39 loc) · 955 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
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "airflow_aws_shared_secrets"
version = "0.0.5"
description = "Airflow AWS Shared Secrets Manager"
authors = ["Albert Franzi"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
apache-airflow-providers-amazon = "^8.1.0"
[tool.poetry.group.dev.dependencies]
tox = "^4.4.6"
pre-commit = "^3.1.1"
mypy = "^1.1.1"
black = "^23.1.0"
pytest = "^7.2.2"
pytest-cov = "^4.0.0"
flake8 = "^6.0.0"
moto = {extras = ["server"], version = "^4.1.10"}
flask-cors = "^3.0.10"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.6"
mkdocs-git-revision-date-localized-plugin = "^1.2.2"
mkdocs-git-committers-plugin-2 = "^2.2.3"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-p no:warnings"
testpaths = [
"tests",
]
env = [
"AWS_REGION = us-east-1",
]
[build-system]
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"