-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 924 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 924 Bytes
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
[tool.poetry]
name = "airrlogger"
version = "0.1.1"
description = "Python logging configuration library for MLCommons AIRR applications."
authors = ["Daniel Hosterman <daniel@mlcommons.org>"]
readme = "README.md"
packages = [{include = "airrlogger"}]
homepage = "https://github.com/mlcommons/modellogger"
repository = "https://github.com/mlcommons/modellogger"
documentation = "https://github.com/mlcommons/modellogger#readme"
keywords = ["logging", "internal"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[tool.poetry.dependencies]
python = ">=3.12,<4.0"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2"
black = "^25.12.0"
isort = "^7.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"