-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (49 loc) · 1 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
[tool.poetry]
name = "cs-data-ingestion"
version = "0.1.0"
description = "Data ingestion stack for a graduation project."
authors = ["Leonardo Melo <[email protected]>"]
license = "ISC"
readme = "README.md"
repository = "https://github.com/lcbm/cs-data-ingestion"
keywords = ["airflow", "flask", "docker", "poetry"]
[tool.poetry.dependencies]
python = "^3.8"
pre-commit = "^2.9.2"
apache-airflow = "1.10.12"
psutil = "5.7.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^20.8b1"
flake8 = "^3.8.4"
[tool.isort]
profile = "black"
force_single_line = true
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
use_parentheses = true
src_paths = ["airflow", "frontend"]
filter_files = true
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"