Skip to content

Commit 02eacbb

Browse files
committed
Add poetry toml
1 parent f683870 commit 02eacbb

File tree

4 files changed

+125
-10
lines changed

4 files changed

+125
-10
lines changed

chart_data_extractor/poetry.lock

Lines changed: 64 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chart_data_extractor/pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ pydantic = "^2.8.2"
2020
pytest = "^7.4.0"
2121
python-dotenv = "^1.0.0"
2222
pytest-dotenv = "^0.5.2"
23+
ruff = "^0.11.12"
24+
2325

2426
[build-system]
2527
requires = ["poetry-core"]

template/poetry.lock

Lines changed: 34 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

template/pyproject.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[tool.poetry]
2+
name = "e2b-code-interpreter-template"
3+
version = "0.1.0"
4+
description = "E2B Code Interpreter Template"
5+
authors = ["e2b <[email protected]>"]
6+
license = "MIT"
7+
readme = "README.md"
8+
homepage = "https://e2b.dev/"
9+
repository = "https://github.com/e2b-dev/code-interpreter/tree/main/template"
10+
11+
[tool.poetry.dependencies]
12+
python = "^3.9"
13+
14+
[tool.poetry.group.dev.dependencies]
15+
ruff = "^0.11.12"
16+
17+
[build-system]
18+
requires = ["poetry-core"]
19+
build-backend = "poetry.core.masonry.api"
20+
21+
[tool.poetry.urls]
22+
"Bug Tracker" = "https://github.com/e2b-dev/code-interpreter/issues"
23+
24+
[tool.ruff.lint]
25+
ignore = ["F401", "F403"]

0 commit comments

Comments
 (0)