-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
33 lines (28 loc) · 861 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mona-openai"
version = "0.2.1"
authors = [
{ name="Itai Bar Sinai", email="[email protected]" },
]
description = "Integration client for monitoring OpenAI usage with Mona"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
keywords = ["OpenAI", "LLMs", "GPT", "Mona", "Monitoring", "AI"]
dynamic = ["dependencies"]
[project.urls]
"Homepage" = "https://github.com/monalabs/mona-openai"
"Bug Tracker" = "https://github.com/monalabs/mona-openai/issues"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.black]
line-length = 79
[tool.mypy]
ignore_missing_imports = true