-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (65 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
70 lines (65 loc) · 1.58 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
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">= 3.8"
name = "aihwkit_lightning"
version = "2.0.1"
authors = [
{name = "Corey Lammie", email = "corey.lammie@ibm.com"},
{name = "William Simon", email = "william.simon1@ibm.com"},
{name = "Julian Buechel", email = "jub@zurich.ibm.com"},
]
maintainers = [
{name = "Julian Buechel", email = "jub@zurich.ibm.com"}
]
description = "IBM Analog Hardware Acceleration Kit - Lightning"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.txt"]
dependencies = [
"torch>=1.10.0",
"typing_extensions>=4.0.0",
"tqdm",
]
keywords = [
"ai",
"analog",
"rpu",
"torch",
"memristor",
"pcm",
"reram",
"crossbar",
"in-memory",
"nvm",
"non-von-neumann",
"non-volatile memory",
"phase-change material"
]
[project.optional-dependencies]
dev = [
"mypy==1.8.0",
"pylint==2.15.7",
"pycodestyle==2.11.1",
"black==24.3.0",
"pytest",
]
huggingface = [
"transformers>=4.20.0",
"datasets",
]
triton = [
"triton>=2.0.0",
]
[project.urls]
Paper = "https://openreview.net/forum?id=QNdxOgGmhR"
Documentation = "https://aihwkit-lightning.readthedocs.io/en/latest/"
Repository = "https://github.com/IBM/aihwkit-lightning"
Issues = "https://github.com/IBM/aihwkit-lightning/issues"
Changelog = "https://github.com/IBM/aihwkit-lightning/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["src"]
[tool.mypy]
ignore_missing_imports = true
disable_error_code = ["operator", "index", "union-attr"]