-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (49 loc) · 1.09 KB
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
[project]
name = "CoLT5-attention"
version = "0.11.2"
description = "Conditionally Routed Attention"
authors = [
{ name = "Phil Wang", email = "lucidrains@gmail.com" }
]
readme = "README.md"
requires-python = ">= 3.6"
license = { file = "LICENSE" }
keywords = [
'artificial intelligence',
'attention mechanism',
'dynamic routing'
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
]
dependencies = [
'einops>=0.8.0',
'local-attention>=1.8.6',
'packaging',
'torch>=1.10'
]
[project.urls]
Repository = "https://github.com/lucidrains/CoLT5-attention"
[project.optional-dependencies]
test = [
"pytest"
]
[tool.pytest.ini_options]
pythonpath = [
"."
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"colt5_attention",
"README.md",
"LICENSE"
]
[tool.hatch.build.targets.wheel]
packages = ["colt5_attention"]