-
Notifications
You must be signed in to change notification settings - Fork 32
/
pyproject.toml
94 lines (81 loc) · 1.94 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openinference-instrumentation-crewai"
dynamic = ["version"]
description = "OpenInference Crewai Instrumentation"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10, <3.13"
authors = [
{ name = "OpenInference Authors", email = "oss@arize.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"opentelemetry-api",
"opentelemetry-instrumentation",
"opentelemetry-semantic-conventions",
"openinference-instrumentation>=0.1.17",
"openinference-semantic-conventions",
"wrapt",
"typing-extensions",
]
[project.optional-dependencies]
instruments = [
"crewai >= 0.41.1",
]
test = [
"crewai == 0.41.1",
"crewai-tools == 0.4.26",
"opentelemetry-sdk",
"responses",
"vcrpy",
]
[project.urls]
Homepage = "https://github.com/Arize-ai/openinference/tree/main/python/instrumentation/openinference-instrumentation-crewai"
[tool.hatch.version]
path = "src/openinference/instrumentation/crewai/version.py"
[tool.hatch.build.targets.sdist]
include = [
"/src",
]
[tool.hatch.build.targets.wheel]
packages = ["src/openinference"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = [
"tests",
]
[tool.mypy]
strict = true
explicit_package_bases = true
exclude = [
"examples",
"dist",
"sdist",
]
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"crewai",
"wrapt",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint.per-file-ignores]
"*.ipynb" = ["E402", "E501"]
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.ruff.lint.isort]
force-single-line = false