forked from AgentOps-AI/agentops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (46 loc) · 1.22 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentops"
version = "0.3.15rc1"
authors = [
{ name="Alex Reibman", email="[email protected]" },
{ name="Shawn Qiu", email="[email protected]" },
{ name="Braelyn Boynton", email="[email protected]" },
{ name="Howard Gil", email="[email protected]" }
]
description = "Observability and DevTool Platform for AI Agents"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.0.0,<3.0.0",
"psutil==5.9.8",
"packaging==23.2",
"termcolor==2.4.0",
"PyYAML>=5.3,<7.0"
]
[project.optional-dependencies]
dev = [
"pytest==7.4.0",
"requests_mock==1.11.0",
"tach~=0.9",
]
langchain = [
"langchain==0.2.14"
]
[project.urls]
Homepage = "https://github.com/AgentOps-AI/agentops"
Issues = "https://github.com/AgentOps-AI/agentops/issues"
[tool.autopep8]
max_line_length = 120
[project.scripts]
agentops = "agentops.cli:main"
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"