-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
83 lines (73 loc) · 1.97 KB
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
[tool.poetry]
name = "e2bSandbox"
version = "1.0.0"
description = "e2b Runtime Sandbox, Code Interpreting"
authors = ["Zack4DEV ,manager@Zeh4DEV.com"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Zack4DEV/e2bSandbox"
homepage = "https://e2b.dev"
packages = [{ include = "./" ,from= "." }]
package-mode = false
keywords = ["ai", "llm"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = ">=3.12.4,<3.14"
pydantic = ">=2.8.2,<3.0.0"
langchain = ">=0.2.1,<0.3.0"
langchain-openai = ">=0.1.0,<0.2.0"
crewai = ">=1.4.1,<1.6.1"
llama-index = ">=0.13.1,<0.14.0"
ollama = ">=0.1.0,<0.2.0"
jsonref = ">=1.1.0,<2.0.0"
[tool.poetry.group.dev.dependencies]
python-dotenv = "^1.0.1"
cowsay = "^6.1"
python-cowsay = "^1.2.1"
pytest = "^8.4.1"
pytest-cov = "^6.2.1"
pytest-asyncio = "^0.23.6"
pytest-timeout = "^2.3.1"
ruff = "^0.3.5"
pre-commit = "^3.7.0"
mypy = "^1.10.0"
e2b = "^2.8.1"
e2b-code-interpreter = "^2.4.1"
e2b-desktop = "^2.2.0"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "testpypi"
url = "https://test.pypi.org/legacy/"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-ra -q --cov=core --no-cov-on-fail --timeout 10"
pythonpath = ["."]
[tool.coverage.report]
exclude_lines = ["if TYPE_CHECKING:", "raise NotImplementedError()"]
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "PL", "RUF"]
ignore = ["E501", "PLR0913", "PLR2004"]
extend-select = ["I"]
[tool.mypy]
python_version = "3.13"
ignore_missing_imports = true
strict = true
plugins = []
[[tool.mypy.overrides]]
module = ["langchain.", "crewai.", "llama_index.", "ollama."]
ignore_missing_imports = true