-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (34 loc) · 1.04 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "quantum-filter-zoo"
version = "0.1.0"
description = "Quantum filter layers (quanvolution, QPF, PQC conv) for classical PyTorch models, built on PennyLane."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Quantum Filter Zoo contributors" }]
keywords = ["quantum-machine-learning", "pytorch", "pennylane", "quanvolution"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=2.0",
"pennylane>=0.35",
"numpy>=1.24",
"scikit-learn>=1.3",
"matplotlib>=3.7",
"tqdm>=4.65",
"torchvision>=0.15",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "ruff"]
[tool.setuptools.packages.find]
include = ["qfz*"]
[tool.pytest.ini_options]
testpaths = ["tests"]