-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (36 loc) · 940 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
38
[build-system]
requires = ["setuptools>=72"]
build-backend = "setuptools.build_meta"
[project]
name = "modelmetry-sdk"
version = "0.0.5"
description = "Modelmetry SDK for Python applications."
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Modelemtry", email = "[email protected]" }]
keywords = [
"llm",
"monitoring",
"guardrails",
"tracing",
"observability",
"modelmetry",
]
requires-python = ">=3.0"
dependencies = [
"urllib3>=1.25.3",
"python-dateutil>=2.9.0",
"pydantic>=2",
"typing-extensions>=4.12.2",
"devtools>=0.12.2",
"python-dotenv>=1.0.1",
"pytest>=8.2.2",
]
classifiers = [
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
GitHub = "https://github.com/modelmetry/modelmetry-sdk-python"
Homepage = "https://modelmetry.com"