-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 959 Bytes
/
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
[tool.poetry]
name = "catalog"
version = "0.1.0"
description = ""
authors = [
"Confirm Labs <[email protected]>",
]
[tool.poetry.dependencies]
python = ">=3.8.1"
typer = "^0.9.0"
tqdm = "^4.65.0"
torch = { url = "https://download.pytorch.org/whl/cu118/torch-2.0.1%2Bcu118-cp310-cp310-linux_x86_64.whl" }
torchvision = { url = "https://download.pytorch.org/whl/cu118/torchvision-0.15.2%2Bcu118-cp310-cp310-linux_x86_64.whl" }
transformers = "^4.30.2"
datasets = "^2.13.0"
mosaicml-streaming = "^0.5.1"
numpy = "^1.24.3"
pandas = "^2.0.2"
duckdb = "^0.8.1"
boto3 = "^1.26.153"
huggingface-hub = "^0.15.1"
black = "^23.3.0"
ruff = "^0.0.272"
pre-commit = "^3.3.3"
accelerate = "^0.20.3"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = [
"poetry-core>=1.0.0",
]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
# pyflakes, pycodestyle, isort
select = ["F", "E", "W", "I001"]
exclude = []