-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 885 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 885 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "quixer"
version = "0.1.0"
description = "Quixer"
readme = "README.md"
requires-python = ">= 3.11"
authors = [
{name="Nikhil Khatri", email = "nikhil.khatri@quantinuum.com"},
{name="Gabriel Matos", email = "gabriel.matos@quantinuum.com"}
]
keywords = ["Quixer"]
license = {text = "Apache-2.0"}
dependencies = [
"torch==2.3.0",
"torchtext==0.18.0",
"torchquantum>=0.1.8,<0.2",
"torchvision==0.18.0",
"datasets>=3.2,<3.3",
"qiskit<1.0",
"qiskit-aer==0.13.3",
"qiskit-ibm-provider==0.10.0",
"qiskit-ibm-runtime==0.20.0",
"qiskit-terra",
"tqdm>=4.67,<4.68"
]
[tool.setuptools]
py-modules = ["quixer"]
[project.optional-dependencies]
dev = [
"flake8>=7.1,<7.2",
"black>=24.10,<24.11",
]
test = [
"pytest>=8.3,<8.4",
]