-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.65 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
[tool.poetry]
name = "WP6_QNLP"
version = "0.3.0"
description = "The repository of the quantum natural language processing WP6 within NEASQC. Development and releases are stored in this repository."
authors = [
"Richard Wolf <[email protected]>",
"Conor Dune <[email protected]>",
"Pablo Suarez <[email protected]>",
"Pablo Lauret Martinez de Rituerto <[email protected]>",
"Yanis Lalou <[email protected]>"]
readme = "README.md"
repository = "https://github.com/NEASQC/WP6_QNLP"
packages = [
{include = "module", from = "./neasqc_wp61/models/quantum/alpha/"}
]
[tool.poetry.dependencies]
python = "~3.10"
pandas = "==1.5.1"
numpy = "==1.23.4"
matplotlib = "==3.6.1"
myqlm = "==1.5.1"
scipy = "==1.9.3"
scikit-learn = "==1.1.3"
discopy = "==1.1.4"
lambeq = "==0.3.3"
pytket = ">=0.19.2"
qiskit = "==0.43.1"
qiskit_ignis = "==0.7.1"
sympy = "==1.11.1"
torch = "==2.0.1"
fasttext = { git = "https://github.com/cfculhane/fastText.git" }
tensorflow = {version = "==2.10.0", markers = "platform_machine != 'arm64'"}
tensorflow-macos = {version = "==2.10.0", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'"}
tensorflow-metal = {version = "==0.6.0", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'"}
GitPython = "==3.1.31"
nltk = "^3.8.1"
torchvision = "==0.15.2"
pennylane = "^0.31.0"
plotly = "^5.15.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "==4.2.0"
sphinx-rtd-theme = "==1.0.0"
myst-parser = "^0.18.1"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.23.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"