-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
74 lines (63 loc) · 1.44 KB
/
pyproject.toml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "titans-pytorch"
version = "0.0.40"
description = "Titans"
authors = [
{ name = "Phil Wang", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">= 3.9"
license = { file = "LICENSE" }
keywords = [
'artificial intelligence',
'deep learning',
'neural memory module',
'test time training',
'linear attention'
]
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
]
dependencies = [
"accelerated-scan>=0.2.0",
"axial_positional_embedding>=0.3.5",
"einx>=0.3.0",
"einops>=0.8.0",
"hyper-connections>=0.1.8",
"Ninja",
"rotary-embedding-torch",
"tensordict",
"torch>=2.2",
"x-transformers"
]
[project.urls]
Homepage = "https://pypi.org/project/titans-pytorch/"
Repository = "https://github.com/lucidrains/titans-pytorch"
[project.optional-dependencies]
examples = [
"local-attention>=1.10.1",
"taylor-series-linear-attention",
"tqdm",
"wandb"
]
test = [
"pytest"
]
[tool.pytest.ini_options]
pythonpath = [
"."
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["titans_pytorch"]