-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 1.03 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qubify"
version = "0.2.0"
description = "qubify = make it QUBO — a constraint-to-QUBO compiler for quantum optimization"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE*"]
requires-python = ">=3.10"
authors = [
{name = "Lehao Lin", email = "lehaolin@lehao.xyz"},
]
keywords = ["qubo", "ising", "optimization", "quantum-computing", "constraint-programming"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.24",
]
[project.urls]
Homepage = "https://github.com/LehaoLin/qubify"
Repository = "https://github.com/LehaoLin/qubify"
Documentation = "https://github.com/LehaoLin/qubify#readme"
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-cov"]
[tool.setuptools.packages.find]
include = ["qubify*"]