forked from goombalab/hnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·40 lines (38 loc) · 1012 Bytes
/
pyproject.toml
File metadata and controls
executable file
·40 lines (38 loc) · 1012 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
[project]
name = "hnet"
version = "0.0.1"
description = "H-Net"
authors = [
{ name = "Sukjun Hwang", email = "sukjunh@cs.cmu.edu" },
{ name = "Brandon Wang", email = "brandon.wang@cartesia.ai"},
{ name = "Albert Gu", email = "agu@cs.cmu.edu" },
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
dependencies = [
"torch>=2.5.1",
"triton>=3.2.0",
"mamba_ssm @ git+https://github.com/state-spaces/mamba.git@a6a1dae6efbf804c9944a0c2282b437deb4886d8",
"flash_attn==2.8.0.post2",
"causal_conv1d @ git+https://github.com/Dao-AILab/causal-conv1d.git@e940ead2fd962c56854455017541384909ca669f",
"einops",
"optree",
"regex",
"omegaconf",
]
[project.urls]
Repository = "https://github.com/goombalab/hnet"
[tool.setuptools.packages.find]
where = ["."]
include = ["hnet*"]
exclude = ["tests*"]
[build-system]
requires = [
"setuptools>=61.0.0",
"wheel",
"torch",
"packaging",
"ninja",
]
build-backend = "setuptools.build_meta"