-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
73 lines (67 loc) · 1.5 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
[tool.poetry]
name = "numalogic-prometheus"
version = "0.8.1a2"
description = "Numalogic Prometheus based tools"
authors = ["Numalogic developers"]
packages = [{ include = "numaprom" }]
maintainers = [
"Avik Basu <[email protected]>",
"Nandita Koppisetty <[email protected]>",
"Kushal Batra <[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.9, <3.13"
orjson = "^3.8.4"
prometheus-client = "^0.18"
setuptools = "^70.0.0"
omegaconf = "^2.3.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
coverage = "^6.3"
black = "^23.1"
ruff = "^0.0.264"
pytest = "^7.1"
pytest-cov = "^4.0"
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 = "py39"
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"