-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (40 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
42 lines (40 loc) · 1.21 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
39
40
41
42
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "pyqrackising"
version = "9.11.3"
requires-python = ">=3.8"
description = "Fast MAXCUT, TSP, and sampling heuristics from near-ideal transverse field Ising model (TFIM)"
readme = {file = "README.txt", content-type = "text/markdown"}
license = {text = "LGPL-3.0-or-later"}
authors = [
{name = "Dan Strano", email = "stranoj@gmail.com"}
]
maintainers = [
{name = "Dan Strano", email = "stranoj@gmail.com"}
]
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: C++",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
]
dependencies=[
"networkx",
"numpy",
"numba",
"scipy"
]
[project.urls]
Homepage = "https://github.com/vm6502q/PyQrackIsing"
Documentation = "https://github.com/vm6502q/PyQrackIsing/blob/main/README.md"
Repository = "https://github.com/vm6502q/PyQrackIsing"
Issues = "https://github.com/vm6502q/PyQrackIsing/issues"