logtools/pyproject.toml

34 lines
764 B
TOML

[tool.poetry]
name = "logtools"
version = "1.1.4"
description = ""
authors = ["gmega <giuliano@status.im>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
pytz = "^2023.3.post1"
colored = "^2.2.3"
python-dateutil = "^2.8.2"
elasticsearch = "^8.10.1"
prettytable = "^3.9.0"
fastapi = "^0.109.0"
[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"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
log-merge = 'logtools.cli.merge:main'
log-to-csv = 'logtools.cli.to_csv:main'
es-logs = 'logtools.cli.es_logs:main'