-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (50 loc) · 949 Bytes
/
pyproject.toml
File metadata and controls
53 lines (50 loc) · 949 Bytes
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
[tool.poetry]
name = "SimulCost"
version = "0.1.0"
description = "SimulCost Bench"
authors = ["LeoLai"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
langchain = "^0.3.19"
wandb = "^0.19.7"
tqdm = "^4.67.1"
s5cmd = "^0.2.0"
langchain-google-genai = "^2.0.11"
langchain-openai = "^0.3.7"
openpyxl = "^3.1.5"
scipy = "^1.15.2"
h5py = "^3.13.0"
pandas = "^2.2.3"
boto3 = "^1.37.7"
hydra-core = "^1.3.2"
matplotlib = "^3.10.1"
black = "^25.1.0"
langchain-aws = "^0.2.28"
xlsxwriter = "^3.2.5"
python-dotenv = "^1.1.1"
urllib3 = "<2.0.0"
seaborn = "^0.13.2"
taichi = "^1.7.4"
pyarrow = "^21.0.0"
meshio = "^5.3.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py37', 'py38', 'py39', 'py310', 'py311']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''