-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (33 loc) · 791 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (33 loc) · 791 Bytes
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
[tool.poetry]
name = "logscope-cli"
version = "0.6.0"
description = "LogScope — Beautiful log viewer for the terminal"
authors = ["vinnytherobot"]
readme = "README.md"
packages = [{include = "logscope"}]
[tool.poetry.dependencies]
python = "^3.9"
rich = "^13.0.0"
typer = "^0.15.1"
typing-extensions = "^4.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^4.0.0"
ruff = "^0.15.0"
[tool.poetry.scripts]
logscope = "logscope.cli:app"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--tb=short"
[tool.coverage.run]
source = ["logscope"]
branch = true
[tool.coverage.report]
fail_under = 50
show_missing = true
[tool.ruff]
line-length = 100
target-version = "py39"