-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (48 loc) · 1.08 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
[tool.poetry]
name = "python2rust"
version = "0.1.0"
description = "A tool to migrate Python code to Rust using multiple LLMs"
authors = ["Your Name <your.email@example.com>"]
readme = "README.md"
packages = [
{ include = "python2rust", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31.0"
pillow = "^10.0.0"
pydantic = "^2.0.0"
pydantic-settings = "^2.1.0"
aiohttp = "^3.9.0"
anthropic = "^0.37.1"
langchain = "^0.3.5"
langchain-anthropic = "^0.2.3"
langchain-huggingface = "^0.1.1"
psutil = "^6.1.0"
codecarbon = "^2.7.2"
langchain-llm = "^0.4.15"
ecologits = "^0.5.1"
tiktoken = "^0.8.0"
pylint = "^3.3.1"
autopep8 = "^2.3.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
black = "^24.1.0"
ruff = "^0.1.0"
mypy = "^1.5.0"
autopep8 = "^2.3.1"
isort = "^5.13.2"
pylint = "^3.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = ["E", "F", "I"]
line-length = 100
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.mypy]
python_version = "3.9"
strict = true
ignore_missing_imports = true