-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 905 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
43
44
45
[project]
name = "tiny_stories_sae"
version = "0.1.0"
description = "Add your description here"
dependencies = [
"beartype==0.18.5",
"jaxtyping==0.2.33",
"tensorboard==2.17.1",
"coolname==2.2.0",
"accelerate==0.33.0",
"datasets==2.20.0",
"huggingface-hub==0.24.5",
"torch==2.4.0",
"transformers==4.48.3",
"openai>=1.45.0",
"python-dotenv>=1.0.1",
"pydantic>=2.9.1",
"tqdm>=4.66.5",
"seaborn>=0.13.2",
"pandas>=2.2.2",
]
readme = "README.md"
requires-python = ">= 3.9"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint]
ignore = ["F722"]
extend-select = ["I"]
[tool.ruff.lint.isort]
known-first-party = ["tiny_stories_sae"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/tiny_stories_sae"]
[tool.uv]
dev-dependencies = [
"pytest>=8.3.3",
]