-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 895 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
[tool.poetry]
name = "clea"
version = "0.1.0.rc4"
description = "Framework for writing CLI application quickly"
readme = "README.md"
authors = ["angrybayblade <vptl185@gmail.com>"]
packages = [{include = "clea"}]
[tool.setuptools.package-data]
clea = ["py.typed"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
typing-extensions = "^4.7.1"
[tool.poetry.group.dev.dependencies]
isort = "==5.12.0"
black = "==23.3.0"
mypy = "==1.3.0"
tox = "==3.28.0"
pylint = "==2.17.4"
flake8 = "5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
multi_line_output = 3
line_length = 88
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
order_by_type = false
case_sensitive = true
lines_after_imports = 2
known_first_party = "clea"
known_local_folder = "tests"
[tool.black]
line_length = 88