-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 870 Bytes
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 870 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
[project]
name = "stablesteering"
version = "0.1.0"
description = "Research prototype for interactive prompt-embedding steering"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"huggingface-hub>=0.26.0",
"jinja2>=3.1.4",
"pydantic>=2.9.0",
"pydantic-settings>=2.5.2",
"PyYAML>=6.0.2",
"rich>=13.9.0",
"uvicorn>=0.30.6",
]
[project.optional-dependencies]
dev = [
"httpx>=0.27.2",
"markdown>=3.7",
"pytest>=8.3.3",
]
inference = [
"accelerate>=0.34.2",
"lpips>=0.1.4",
"diffusers>=0.37.0",
"pillow>=11.0.0",
"safetensors>=0.4.5",
"scipy>=1.13.0",
"torch>=2.4.0",
"transformers>=4.45.0",
"torchvision>=0.19.0",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["app"]
[tool.pytest.ini_options]
testpaths = ["tests"]