-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
51 lines (47 loc) · 1.37 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
46
47
48
49
50
51
[metadata]
name = qecsimext
version = attr: qecsimext.__version__
author = David K. Tuckett
author_email = qecsim@gmail.com
description = qecsim extension example
long_description = file:README.rst
long_description_content_type = text/x-rst
url = https://github.com/qecsim/qecsimext
license = BSD 3-Clause License
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Physics
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
License :: OSI Approved :: BSD License
project_urls =
Source Code = https://github.com/qecsim/qecsimext
[options]
python_requires = >= 3.5
packages = find:
package_dir = = src
install_requires =
numpy>=1.17
qecsim
[options.packages.find]
where = src
[options.extras_require]
# $ pip install -e .[dev]
dev =
tox
pytest
[options.entry_points]
qecsim.cli.run.codes =
ext_3qubit = qecsimext.threequbit:ThreeQubitCode
qecsim.cli.run.error_models =
ext_3qubit.bit_flip = qecsimext.threequbit:ThreeQubitBitFlipErrorModel
qecsim.cli.run.decoders =
ext_3qubit.lookup = qecsimext.threequbit:ThreeQubitLookupDecoder
qecsim.cli.run_ftp.codes =
qecsim.cli.run_ftp.error_models =
qecsim.cli.run_ftp.decoders =