-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
50 lines (41 loc) · 1.26 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "log_parser"
version = "1.1.1"
description = "A simple asynchronous log file parsing library"
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE.txt" }
keywords = ["log", "parser", "async", "asynchronous"]
authors = [{name="Misha Schwartz", "email"="mschwa@cs.toronto.edu"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = ["anyio~=4.6.0"]
[project.optional-dependencies]
dev = ["ruff", "pre-commit"]
test = ["pytest", "pytest-timeout", "pytest-mock"]
[project.scripts]
log-parser = "log_parser.cli:main"
[tool.setuptools]
packages = ["log_parser"]
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.format]
docstring-code-format = true
line-ending = "lf"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "D", "I", "ANN"]
ignore = ["D100", "D104", "D417", "ANN002", "ANN003"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.per-file-ignores]
"test/**.py" = ["D", "ANN"]