Spaces:
Runtime error
Runtime error
neoai-kterasawa
commited on
Commit
Β·
e80821f
1
Parent(s):
3ebb4d8
update toml
Browse files- pyproject.toml +8 -0
pyproject.toml
CHANGED
@@ -3,6 +3,7 @@ name = "kculculate"
|
|
3 |
version = "0.1.0"
|
4 |
description = ""
|
5 |
authors = ["neoai-kterasawa <k.terasawa@neoai.jp>"]
|
|
|
6 |
readme = "README.md"
|
7 |
|
8 |
[tool.poetry.dependencies]
|
@@ -20,3 +21,10 @@ pyproject-flake8 = "^7.0.0"
|
|
20 |
[build-system]
|
21 |
requires = ["poetry-core"]
|
22 |
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
version = "0.1.0"
|
4 |
description = ""
|
5 |
authors = ["neoai-kterasawa <k.terasawa@neoai.jp>"]
|
6 |
+
packages = [{ include = "kculculate" }]
|
7 |
readme = "README.md"
|
8 |
|
9 |
[tool.poetry.dependencies]
|
|
|
21 |
[build-system]
|
22 |
requires = ["poetry-core"]
|
23 |
build-backend = "poetry.core.masonry.api"
|
24 |
+
|
25 |
+
|
26 |
+
[tool.flake8]
|
27 |
+
max-line-length = 119
|
28 |
+
extend-ignore = ["E203", "W503", "E501", "E704"]
|
29 |
+
exclude = [".venv", ".git", "__pycache__", ".mypy_cache", ".hg"]
|
30 |
+
max-complexity = 10
|