forked from qutip/qutip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
74 lines (71 loc) · 1.97 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
[metadata]
name = qutip
url = https://qutip.org
description = QuTiP: The Quantum Toolbox in Python
long_description = file: README.md
long_description_content_type = text/markdown; variant=GFM
keywords = quantum, physics, dynamics
license = BSD 3-Clause License
license_files = LICENSE.txt
project_urls =
Bug Tracker = https://github.com/qutip/qutip/issues
Documentation = https://qutip.readthedocs.io/en/stable/
Source Code = https://github.com/qutip/qutip
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Scientific/Engineering
Operating System :: MacOS
Operating System :: POSIX
Operating System :: Unix
Operating System :: Microsoft :: Windows
author = Alexander Pitchford, Paul D. Nation, Robert J. Johansson, Chris Granade, Arne Grimsmo, Nathan Shammah, Shahnawaz Ahmed, Neill Lambert, Eric Giguere, Boxi Li, Jake Lishman, Simon Cross
author_email = [email protected]
platforms = Linux, Mac OSX, Unix, Windows
[options]
packages = find:
include_package_data = True
zip_safe = False
python_requires = >=3.10
install_requires =
numpy>=1.22
scipy>=1.9
packaging
setup_requires =
numpy>=2.0.0
scipy>=1.9
cython>=0.29.20; python_version>='3.10'
packaging
[options.packages.find]
include = qutip*
[options.extras_require]
graphics = matplotlib>=3.5
runtime_compilation =
cython>=0.29.20; python_version>='3.10'
filelock
setuptools
semidefinite =
cvxpy>=1.0
cvxopt
tests =
pytest>=5.2
pytest-rerunfailures
ipython =
ipython
extras =
loky
tqdm
mpi =
mpi4py
; This uses ConfigParser's string interpolation to include all the above
; dependencies into one single target, convenient for testing full builds.
full =
%(graphics)s
%(runtime_compilation)s
%(semidefinite)s
%(tests)s
%(ipython)s
%(extras)s