-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
107 lines (96 loc) · 2.37 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[tool.poetry]
name = "airflow_dvc"
version = "1.9.0"
description = "DVC operator for Airflow"
authors = ["Piotr Styczyński <[email protected]>"]
readme = "README.md"
include = [
{ path = 'README.md', format = 'wheel' },
{ path = 'README.md', format = 'sdist' },
{ path = 'example/dags/*', format = 'wheel' },
{ path = 'example/dags/*', format = 'sdist' },
{ path = 'example/plugins/*', format = 'wheel' },
{ path = 'example/plugins/*', format = 'sdist' },
{ path = 'pyproject.toml', format = 'wheel' },
{ path = 'pyproject.toml', format = 'sdist' },
"README.md",
"example",
"example/dags",
"example/dags/dvc_sensor_example.py",
"example/dags/dvc_upload_example.py",
"example/plugins",
"example/plugins/dvc.py",
"pyproject.toml"
]
[tool.poetry.scripts]
publish = 'publish:publish'
airflow_dvc = 'airflow_dvc.cli.entrypoint:run_cli'
[tool.poetry.dependencies]
python = "^3.8"
SQLAlchemy = "<1.4.0"
GitPython = "^3.1.14"
apache-airflow = ">=2.0.0"
apache-airflow-providers-amazon = "^1.3.0"
typer = "^0.3.2"
semver = "^2.13.0"
semantic-version = "^2.8.5"
toml = "^0.10.2"
[tool.poetry.extras]
dvc = ["s3", "dvc>=2.0.18"]
[tool.poetry.dev-dependencies]
pytest = "^6.2.1"
pytest-xdist = "^2.2.0"
isort = "^5.7.0"
black = "^20.8b1"
pydoc-markdown = "^3.9.0"
s3pypi = "^0.11.0"
flakehell = "0.9.0"
flake8 = "3.8.3"
poetry-publish = "^0.4.1"
bump2version = "^1.0.1"
gitchangelog = "^3.0.4"
[tool.poetry.plugins]
[tool.poetry.plugins."airflow.plugins"]
"airflow_dvc_plugin" = "airflow_dvc:DVCPlugin"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.flakehell]
exclude = ["README.rst", "README.md"]
format = "colored"
max_line_length = 120
show_source = true
whitelist = "../../allowlist.txt"
[tool.flakehell.plugins]
flake8-bandit = ["+*", "-S322"]
flake8-bugbear = ["+*"]
flake8-builtins = ["+*"]
flake8-comprehensions = ["+*"]
flake8-darglint = ["+*"]
flake8-docstrings = ["+*"]
flake8-eradicate = ["+*"]
flake8-isort = ["+*"]
flake8-mutable = ["+*"]
flake8-pytest-style = ["+*"]
flake8-spellcheck = ["+*"]
mccabe = ["+*"]
pep8-naming = ["+*"]
pycodestyle = ["+*", "-E203", "-W503"]
pyflakes = ["+*", "-E203"]
pylint = ["+*", "-E203"]
[build-system]
requires = ["poetry-core>=1.1.2a3"]
build-backend = "poetry.core.masonry.api"