19 lines
430 B
TOML
19 lines
430 B
TOML
[build-system]
|
|
requires = ["setuptools>=61"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "threshold-event-detector"
|
|
version = "0.1.0"
|
|
description = "HMS metric threshold event detector"
|
|
requires-python = ">=3.10"
|
|
license = { text = "Proprietary" }
|
|
|
|
[project.optional-dependencies]
|
|
mysql = ["pymysql>=1.1"]
|
|
redis = ["redis>=4.0"]
|
|
kafka = ["kafka-python>=2.0"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["detector*"]
|