forked from mindspore-ai/mindquantum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
81 lines (60 loc) · 1.9 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
77
78
79
80
81
[metadata]
name = mindquantum
version = file:VERSION.txt
author = The MindSpore Authors
author_email = [email protected]
description = A hybrid quantum-classic framework for quantum computing
long_description = file:README.md
long_description_content_type = text/markdown; charset=UTF-8
license = Apache License Version 2.0
license_file = LICENSE
requires_dist = setuptools
url = https://www.mindspore.cn/
home_page = https://www.mindspore.cn/
download_url = https://gitee.com/mindspore/mindquantum/tags
project_urls =
Download = https://gitee.com/mindspore/mindquantum/tags
Source = https://gitee.com/mindspore/mindquantum
Issue-Tracker = https://gitee.com/mindspore/mindquantum/issues
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
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >= 3
setup_requires =
setuptools >= 42
setuptools_scm[toml]
pybind11 >= 2.6.0
install_requires =
numpy >= 1.17.0
scipy >= 1.5.3
projectq >= 0.5.1
openfermion>=1.0.0
sympy >= 1.4
matplotlib >= 3.1.3
rich >= 10.9.0
[options.extras_require]
# test =
# pytest
[options.package_data]
* = *.so, *.so*, *.pyd
# ==============================================================================
[flake8]
max-line-length = 120
exclude =
.git
__pycache__
build
dist
docstring-quotes = """
eradicate-whitelist = # yapf: disable# yapf: enable
# ==============================================================================