forked from qutip/qutip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
57 lines (54 loc) · 1.6 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
[metadata]
name = qutip
url = http://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_file = LICENSE.txt
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
install_requires =
numpy>=1.16.6
scipy>=1.0
packaging
setup_requires =
numpy>=1.16.6,<1.20
scipy>=1.0
cython>=0.29.20
packaging
[options.packages.find]
include = qutip*
[options.extras_require]
graphics = matplotlib>=1.2.1
runtime_compilation = cython>=0.29.20
semidefinite =
cvxpy>=1.0
cvxopt
tests =
pytest>=5.2
pytest-rerunfailures
; 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