Add initial project structure including core Mamba2 logic, entry point, and uv-based dependency management.
14 lines
270 B
TOML
14 lines
270 B
TOML
[project]
|
|
name = "test-diffusion"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"einops>=0.7.0",
|
|
"matplotlib>=3.8.0",
|
|
"numpy>=1.26.0",
|
|
"swanlab>=0.5.0",
|
|
"torch>=2.2.0",
|
|
]
|