forked from numaproj/numalogic-prometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (71 loc) · 1.62 KB
/
pyproject.toml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "numalogic-prometheus"
version = "0.4.14"
description = "ML inference on numaflow using numalogic on Prometheus metrics"
authors = ["Numalogic developers"]
packages = [{ include = "numaprom" }]
maintainers = [
"Avik Basu <[email protected]>",
"Nandita Koppisetty <[email protected]>",
]
classifiers = [
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.10"
]
repository = "https://github.com/numaproj/numalogic-prometheus"
[tool.poetry.dependencies]
python = "~3.10"
redis = {extras = ["hiredis"], version = "^4.5" }
pynumaflow = "~0.4.1"
numalogic = {version = "~0.5", extras = ["redis"]}
orjson = "^3.8.4"
omegaconf = "^2.3.0"
watchdog = "^3.0.0"
loguru = "^0.7.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
coverage = "^6.3"
black = "^23.1"
fakeredis = "^2.11"
ruff = "^0.0.264"
pytest = "^7.1"
pytest-cov = "^4.0"
freezegun = "^1.2.2"
pre-commit = "^3.3.1"
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hgdsadsadassmmm
| \.tox
| \.venv
| \.idea
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''
[tool.ruff]
line-length = 100
src = ["numaprom", "tests"]
select = ["E", "F", "UP"]
target-version = "py310"
show-fixes = true
show-source = true
extend-exclude = [
"*_pb2.py",
"*_pb2*.py",
"*.pyi"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"