-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
31 lines (25 loc) · 1.11 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "lava-docs"
version = "0.6.0"
description = "A Software Framework for Neuromorphic Computing"
authors = [
"Intel's Neuromorphic Computing Lab and the open source community <[email protected]>"
]
license = "Lava uses multiple licenses and is licensed under BSD-3-Clause or LGPL-2.1-or-later"
[tool.poetry.dependencies]
python = ">=3.10, <3.11"
sphinx = { extras = ["toml"], version = "^6.2.1" }
sphinx-tabs = { extras = ["toml"], version = "^3.4.1" }
sphinx_rtd_theme = { extras = ["toml"], version = "^1.0.0" }
sphinx_autodoc_typehints = "^1.23.0"
numpydoc = "^1.2"
nbsphinx = "^0.8.8"
pandoc = "^2.3"
lava-nc = { git = "https://github.com/lava-nc/lava.git", tag = "v0.10.0", develop = true}
lava-dl = { git = "https://github.com/lava-nc/lava-dl.git", tag = "v0.6.0", develop = true}
lava-dnf = { git = "https://github.com/lava-nc/lava-dnf.git", tag = "v0.3.0", develop = true}
lava-optimization = { git = "https://github.com/lava-nc/lava-optimization.git", tag = "v0.5.0", develop = true}
[tool.poetry.dev-dependencies]