-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
86 lines (76 loc) · 2.36 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["graphiq"]
[tool.setuptools.packages.find]
where = ["."]
[project]
name = "graphiq"
version = "0.1.1"
requires-python = ">3.8, <4"
dependencies = [
"numpy~=1.24.4",
"networkx~=3.1",
"matplotlib~=3.7.5",
"scipy~=1.10.1",
"tqdm",
"seaborn",
"scipy",
"flask~=2.2.2",
"pandas",
"psutil",
"py-cpuinfo",
# "qiskit",
"qiskit ~= 0.38.0",
"pylatexenc"
]
description = " GraphiQ is a Python library for the simulation, design, and optimization of quantum photonic circuits."
readme = "README.md"
keywords = ["quantum", "photonic", "circuit", "design"]
license = {text = "Apache 2.0"}
authors = [
{name = "Benjamin MacLellan", email = "benjamin@ki3photonics.com"},
{name = "Jie Lin", email = "jie.lin@quantumbridgetech.com"},
{name = "Sohban Ghanbari", email = "sobhan.ghanbari@quantumbridgetech.com"},
{name = "Luc Robichaud", email = "luc.robichaud@qubridge.io"},
{name = "Piotr Roztocki", email = "piotr@ki3photonics.com"},
]
classifiers = [
# How mature is this project? Common values are
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Science/Research ",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Security :: Cryptography",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Information Analysis",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: Apache Software License",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[project.optional-dependencies]
docs = [
"pymdown-extensions",
"mkdocstrings",
"mkdocs-material",
"mkdocstrings-python",
"mknotebooks",
"mkdocs-minify-plugin",
# "mkdocs-enumerate-headings-plugin",
"mkdocs-add-number-plugin",
]
all = [
"jax",
"optax",
"ray",
]
[project.urls]
Homepage = "https://github.com/graphiq-dev/graphiq"
Documentation = "https://graphiq.readthedocs.io/en/latest/"
Repository = "https://github.com/graphiq-dev/graphiq.git"
Issues = "https://github.com/graphiq-dev/graphiq/issues"