-
Notifications
You must be signed in to change notification settings - Fork 228
/
pyproject.toml
121 lines (109 loc) · 2.58 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentops"
version = "0.3.21"
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,<6.1.0",
"termcolor>=2.3.0,<2.5.0",
"PyYAML>=5.3,<7.0",
"opentelemetry-api>=1.22.0,<2.0.0", # API for interfaces
"opentelemetry-sdk>=1.22.0,<2.0.0", # SDK for implementation
"opentelemetry-exporter-otlp-proto-http>=1.22.0,<2.0.0", # For OTLPSpanExporter
]
[dependency-groups]
dev = [
"pytest==7.4.0",
"pytest-depends",
"pytest-asyncio",
"pytest-vcr",
"pytest-mock",
"pyfakefs",
"requests_mock==1.11.0",
"ruff",
"vcrpy>=6.0.0; python_version >= '3.8'"
]
[project.optional-dependencies]
langchain = [
"langchain==0.2.14; python_version >= '3.8.1'"
]
ci = [
"tach~=0.9",
]
[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"
test_paths = [
"tests",
]
addopts = "--import-mode=importlib --tb=short -p no:warnings"
pythonpath = ["."]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = [
"F401", # Unused imports
"E712", # Comparison to True/False
"E711", # Comparison to None
"E722", # Bare except
"F821", # Undefined names
"F841", # Unused variables
]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".github",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".vscode",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"docs",
"examples",
"node_modules",
"site-packages",
"venv",
"tests/core_manual_tests",
]
[tool.setuptools]
packages = ["agentops", "agentops.llms", "agentops.llms.providers", "agentops.partners"]