-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
45 lines (42 loc) · 1.38 KB
/
setup.cfg
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
[metadata]
name = lsqecc
version = 0.1.0
description = a Python lattice-surgery based quantum error correction compiler
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://latticesurgery.com/
author = George Watkins, Alex Nguyen, Varun Seshadri, Keelan Watkins
author_email = [email protected]
license = LGPLv2+
license_file = LICENSE
classifiers =
Topic :: Scientific/Engineering
Development Status :: 3 - Alpha
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Programming Language :: Python :: 3.10
Operating System :: OS Independent,
Intended Audience :: Science/Research
Natural Language :: English
Typing :: Typed
project_urls =
Source = https://github.com/latticesurgery-com/lattice-surgery-compiler
Tracker = https://github.com/latticesurgery-com/lattice-surgery-compiler/issues
[options]
packages = find:
python_requires = >=3.7
install_requires =
qiskit>=0.24.0, <0.35.0
pyzx>=0.6.4, <0.7.1
igraph>=0.9.8, <0.9.10
package_dir =
=src
# Allows to avoid issues with installing package in editable mode.
# See also: https://github.com/python/mypy/issues/7508#issuecomment-531965557
zip_safe = False
# Require for compliance with PEP 561
include_package_data = True
[options.packages.find]
where = src
[options.extras_require]
latex =
mako>=1.1.5