-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 913 Bytes
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 913 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
45
46
47
48
49
[project]
name = "hclsm"
version = "0.1.0"
description = "Hierarchical Causal Latent State Machine — a novel world model architecture"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
dependencies = [
"torch>=2.4",
"einops>=0.8",
"timm>=1.0",
"scipy>=1.11",
"wandb>=0.16",
"pyyaml>=6.0",
]
[project.optional-dependencies]
kernels = [
"mamba-ssm>=2.0",
"triton>=3.0",
"flash-attn>=2.5",
]
video = [
"decord>=0.6",
"webdataset>=0.2",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.4",
"mypy>=1.0",
]
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["hclsm*"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]