29 lines
518 B
TOML
29 lines
518 B
TOML
[project]
|
|
name = "Q"
|
|
version = "1.0.0"
|
|
description = "QComputing Examples"
|
|
authors = [
|
|
{name = "Anton Romanov", email = "a.romanov@ulstu.ru"}
|
|
]
|
|
readme = "readme.md"
|
|
requires-python = ">=3.9,<3.10"
|
|
|
|
[tool.poetry]
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
spinqit = "0.2.3"
|
|
numpy = "1.26.4"
|
|
sympy = "1.12.1"
|
|
requests = "2.31.0"
|
|
retworkx = "0.14.2"
|
|
scipy = "1.13.1"
|
|
scikit-learn = "1.4.2"
|
|
torch = "2.2.2"
|
|
autograd = "1.5.0"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|