-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
52 lines (43 loc) · 1.11 KB
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
url = "https://github.com/emnigma/RecapKt.git"
[project]
name = "recapkt"
version = "0.1.0"
description = "A dialogue system for text summarization"
authors = [
{ name = "ArtemKushnir" },
{ name = "Mikhail Kharlamov" }
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = []
[project.scripts]
recapkt = "src.main:main"
[project.urls]
Homepage = "https://github.com/emnigma/RecapKt.git"
Repository = "https://github.com/emnigma/RecapKt.git"
[tool.setuptools.packages.find]
where = ["."]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "C", "B", "Q", "UP"]
[tool.ruff.lint.pycodestyle]
max-line-length = 120
[tool.ruff.format]
quote-style = "double"
[tool.ruff.lint.isort]
lines-between-types = 1
[tool.mypy]
files = ["src"]
install_types = "True"
non_interactive = "True"
disallow_untyped_defs = "True"
ignore_missing_imports = "True"
show_error_codes = "True"
warn_redundant_casts = "True"
warn_unused_configs = "True"
warn_unused_ignores = "True"
allow_redefinition = "True"
warn_no_return = "False"
no_implicit_optional = "False"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--color=yes", "-s"]