mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 23:47:12 +00:00
54 lines
1.3 KiB
TOML
54 lines
1.3 KiB
TOML
[tool.poetry]
|
|
name = "integration"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["grandwizard28 <vibhupandey28@gmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.13"
|
|
pytest = "^8.3.5"
|
|
psycopg2 = "^2.9.10"
|
|
testcontainers = "^4.10.0"
|
|
wiremock = "^2.6.1"
|
|
numpy = "^2.3.2"
|
|
clickhouse-connect = "^0.8.18"
|
|
svix-ksuid = "^0.6.2"
|
|
requests = "^2.32.4"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pylint = "^3.3.6"
|
|
isort = "^6.0.1"
|
|
autoflake = "^2.3.1"
|
|
black = "^25.1.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
python_files = "src/**/**.py"
|
|
log_cli = true
|
|
log_format = "%(asctime)s [%(levelname)s] (%(filename)s:%(lineno)s) %(message)s"
|
|
log_date_format = "%Y-%m-%d %H:%M:%S"
|
|
addopts = "-ra"
|
|
|
|
[tool.pylint.main]
|
|
ignore = [".venv"]
|
|
|
|
[tool.pylint.format]
|
|
max-line-length = "400"
|
|
|
|
[tool.pylint."messages control"]
|
|
disable = ["missing-module-docstring", "missing-function-docstring", "missing-class-docstring", "duplicate-code", "dangerous-default-value", "too-many-positional-arguments", "too-many-arguments", "too-few-public-methods", "too-many-instance-attributes", "too-many-locals", "too-many-statements"]
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
|
|
[tool.autoflake]
|
|
recursive = true
|
|
remove-all-unused-imports = true
|
|
remove-unused-variables = true
|
|
exclude = [".venv/**"]
|
|
in-place = true |