forked from patterns-app/patterns-devkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (56 loc) · 1.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
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
authors = ["AJ Alt <aj@patterns.app>", "Ken Van Haren <kvh@patterns.app>"]
description = "Data pipelines from re-usable components"
license = "BSD-3-Clause"
name = "patterns-devkit"
packages = [
{include = "patterns"},
]
version = "1.0.0"
[tool.poetry.dependencies]
platformdirs = "^2.4.0"
pydantic = "^1.8.1"
python = "^3.8"
rich = "^12.0.1"
ruyaml = "^0.91.0"
click = "^8.1.0"
typer = {extras = ["all"], version = "^0.4.1"}
[tool.poetry.dev-dependencies]
black = "^22.3.0"
flake8 = "^4.0.1"
isort = "^4.3.21"
mypy = "^0.910"
pre-commit = "^2.1.1"
pytest = "^7.1.1"
requests-mock = "^1.9.3"
[tool.poetry.scripts]
patterns = "patterns.cli.main:main"
[tool.black]
exclude = '''
/(
\.git
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| build
| dist
| examples
)/
'''
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
line_length = 88
multi_line_output = 3
skip_glob = "examples/*"
use_parentheses = true
[tool.pytest.ini_options]
addopts = "-ra -q"
norecursedirs = []
testpaths = [
"tests",
]
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]