forked from ProjectQ-Framework/ProjectQ
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
76 lines (65 loc) · 1.77 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
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
[metadata]
name = projectq
version = file:VERSION.txt
url = http://www.projectq.ch
author = ProjectQ
author_email = [email protected]
project_urls =
Documentation = https://projectq.readthedocs.io/en/latest/
Issue Tracker = https://github.com/ProjectQ-Framework/ProjectQ/
license = Apache License Version 2.0
license_file = LICENSE
description = ProjectQ - An open source software framework for quantum computing
long_description = file:README.rst
long_description_content_type = text/x-rst; charset=UTF-8
home_page = http://www.projectq.ch
requires_dist = setuptools
classifier =
License :: OSI Approved :: Apache Software License
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
zip_safe = False
packages = find:
python_requires = >= 3
setup_requires =
setuptools_scm[toml]
pybind11 >= 2
install_requires =
matplotlib >= 2.2.3
networkx >= 2
numpy
requests
scipy
[options.extras_require]
braket = boto3
revkit =
revkit == 3.0a2.dev2
dormouse
test =
flaky
mock
pytest >= 6.0
pytest-cov
pytest-mock
docs =
sphinx
sphinx_rtd_theme
# ==============================================================================
[flake8]
max-line-length = 120
exclude =
.git,
__pycache__,
build,
dist,
__init__.py
docstring-quotes = """
eradicate-whitelist = # yapf: disable# yapf: enable
# ==============================================================================