logtools/pyproject.toml

34 lines
758 B
TOML
Raw Normal View History

2023-10-17 16:35:02 -03:00
[tool.poetry]
name = "logtools"
2024-02-08 15:16:13 -03:00
version = "1.2.1"
2023-10-17 16:35:02 -03:00
description = ""
2023-11-14 20:40:07 -03:00
authors = ["gmega <giuliano@status.im>"]
2023-10-17 16:35:02 -03:00
readme = "README.md"
[tool.poetry.dependencies]
2024-02-05 16:18:42 -03:00
python = ">=3.11,<3.12"
2023-10-17 16:35:02 -03:00
pytz = "^2023.3.post1"
colored = "^2.2.3"
python-dateutil = "^2.8.2"
elasticsearch = "^8.10.1"
fastapi = "^0.109.0"
2024-02-08 11:23:56 -03:00
rich = "^13.7.0"
2023-10-17 16:35:02 -03:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
ipython = "^8.15.0"
mypy = "^1.6.0"
install = "^1.3.5"
types-pytz = "^2023.3.1.1"
types-python-dateutil = "^2.8.19.14"
vcrpy = "^5.1.0"
pytest-recording = "^0.13.0"
2023-10-17 16:35:02 -03:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
log-merge = 'logtools.cli.merge:main'
2023-11-14 09:42:12 -03:00
log-to-csv = 'logtools.cli.to_csv:main'
es-logs = 'logtools.cli.es_logs:main'