This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
48 lines (44 loc) · 1.58 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
[metadata]
name = qsearch
version = 2.6.1
description = Search-Based Quantum Synthesis/Compilation
long_description_content_type = text/markdown
url = https://github.com/BQSKit/qsearch
author = LBNL - AQT
author_email = [email protected]
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Topic :: Software Development :: Compilers
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
keywords = quantum compilers synthesis computing
[options]
packages = qsearch
python_requires = >3.6, <4
install_requires =
numpy >=1.16.5
scipy
qsrs >= 2.0.0, < 3.0.0
[options.extras_require]
cma = cma
[bdist_wheel]
universal = 1
[tool:pytest]
minversion = 2.8
testpaths = tests/
python_files = test*.py
norecursedirs = .env
filterwarnings =
default:Using or importing the ABCs:DeprecationWarning:unittest2.*
ignore:the imp module is deprecated in favour of importlib:DeprecationWarning
ignore:Module already imported so cannot be rewritten:pytest.PytestWarning
ignore:.*U.*mode is deprecated:DeprecationWarning:(?!(pytest|_pytest))
ignore:.*type argument to addoption.*:DeprecationWarning
ignore:.*inspect.getargspec.*deprecated, use inspect.signature.*:DeprecationWarning
ignore::pytest.PytestExperimentalApiWarning
default:invalid escape sequence:DeprecationWarning
ignore::_pytest.warning_types.PytestUnknownMarkWarning
ignore:.*encountered in double_scalars:RuntimeWarning
ignore:"@coroutine" decorator is deprecated:DeprecationWarning