-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 963 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (38 loc) · 963 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
[project]
name = "vecsmith"
version = "0.1.0"
description = "Open-source text-to-SVG generation pipeline using LLM prompt enhancement, Flux image generation, and vtracer vectorization"
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"httpx>=0.27.0",
"vtracer>=0.6.0",
"pydantic-settings>=2.6.0",
"python-multipart>=0.0.12",
"Pillow>=10.0.0",
"sse-starlette>=2.0.0",
]
[project.optional-dependencies]
flux = [
"torch>=2.4.0",
"diffusers>=0.33.0",
"transformers>=4.44.0",
"accelerate>=0.33.0",
"sentencepiece>=0.2.0",
"protobuf>=5.28.0",
]
test = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"httpx>=0.27.0",
"respx>=0.22.0",
"Pillow>=10.0.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[build-system]
requires = ["setuptools>=75.0"]
build-backend = "setuptools.backends._legacy:_Backend"