-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1 KB
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 1 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
[project]
name = "find-from-files"
version = "1.0.2"
description = "Simple CLI application for searching keywords/phrases or regular expression patterns from text files."
authors = [
{name = "Jari Ikonen",email = "jariikonen.dev@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICEN[CS]E*", "THIRD_PARTY_LICENSES"]
keywords = ["string-matching", "string", "search", "regular-expression", "text-files", "log-analysis"]
dependencies = [
"colorama (>=0.4.6,<0.5.0)",
"chardet (>=5.2.0,<6.0.0)",
]
[project.urls]
repository = "https://github.com/jariikonen/find-from-files"
[tool.poetry.scripts]
find-from-files = "find_from_files.find_from_files:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyink]
line-length = 80
[tool.poetry.group.dev.dependencies]
pylint = "^3.3.4"
pytest = "^8.3.4"
pre-commit = "^4.1.0"
[tool.pytest.ini_options]
pythonpath = "."
addopts = [
"--import-mode=importlib",
]