-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
37 lines (31 loc) · 948 Bytes
/
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
[tool.poetry]
name = "ml-performance-monitoring"
version = "0.1.8"
description = "ml-performance-monitoring provides a Python library for sending model data & metrics to New Relic, directly from a Jupyter notebook or any other platform. This library is based of the “newrelic_telemetry_sdk” library."
authors = ["AIR <air-opensource@newrelic.com>"]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
newrelic-telemetry-sdk = "^0.4.2"
numpy = '*'
[tool.poetry.dev-dependencies]
pytest = "^6.2.1"
tox = "^3.20.1"
tox-pyenv = "^1.1.0"
[tool.poetry.group.dev.dependencies]
pandas = "^1.5.3"
[tool.nbqa.addopts]
isort = ["--profile=black"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = py36,py37,py38,py39
[testenv]
whitelist_externals = poetry
commands =
poetry install --no-root -vv
poetry run pytest {posargs} tests/
"""