forked from qutip/qutip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·156 lines (134 loc) · 4.7 KB
/
setup.py
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#!/usr/bin/env python
"""QuTiP: The Quantum Toolbox in Python
QuTiP is open-source software for simulating the dynamics of closed and open
quantum systems. The QuTiP library depends on the excellent Numpy, Scipy, and
Cython numerical packages. In addition, graphical output is provided by
Matplotlib. QuTiP aims to provide user-friendly and efficient numerical
simulations of a wide variety of quantum mechanical problems, including those
with Hamiltonians and/or collapse operators with arbitrary time-dependence,
commonly found in a wide range of physics applications. QuTiP is freely
available for use and/or modification on all common platforms. Being free of
any licensing fees, QuTiP is ideal for exploring quantum mechanics in research
as well as in the classroom.
"""
DOCLINES = __doc__.split('\n')
CLASSIFIERS = """\
Development Status :: 4 - Beta
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
"""
# import statements
import os
import sys
import re
from distutils.core import Command
from unittest import TextTestRunner, TestLoader
from glob import glob
from os.path import splitext, basename, join as pjoin
import numpy as np
from numpy.distutils.core import setup
from numpy.distutils.system_info import get_info
# all information about QuTiP goes here-------
MAJOR = 3
MINOR = 0
MICRO = 0
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
REQUIRES = ['numpy (>=1.6)', 'scipy (>=0.11)', 'cython (>=0.15)', 'matplotlib (>=1.1)']
PACKAGES = ['qutip', 'qutip/ui', 'qutip/cy', 'qutip/qip','qutip/tests']
PACKAGE_DATA = {'qutip/tests': ['bucky.npy', 'bucky_perm.npy']}
INCLUDE_DIRS = [np.get_include()]
EXT_MODULES = []
NAME = "qutip"
AUTHOR = "Paul D. Nation, Robert J. Johansson"
AUTHOR_EMAIL = "[email protected], [email protected]"
LICENSE = "BSD"
DESCRIPTION = DOCLINES[0]
LONG_DESCRIPTION = "\n".join(DOCLINES[2:])
KEYWORDS = "quantum physics dynamics"
URL = "http://qutip.org"
CLASSIFIERS = [_f for _f in CLASSIFIERS.split('\n') if _f]
PLATFORMS = ["Linux", "Mac OSX", "Unix", "Windows"]
def git_short_hash():
try:
return "-" + os.popen('git log -1 --format="%h"').read().strip()
except:
return ""
FULLVERSION = VERSION
if not ISRELEASED:
FULLVERSION += '.dev' + git_short_hash()
def write_version_py(filename='qutip/version.py'):
cnt = """\
# THIS FILE IS GENERATED FROM QUTIP SETUP.PY
short_version = '%(version)s'
version = '%(fullversion)s'
release = %(isrelease)s
"""
a = open(filename, 'w')
try:
a.write(cnt % {'version': VERSION, 'fullversion':
FULLVERSION, 'isrelease': str(ISRELEASED)})
finally:
a.close()
local_path = os.path.dirname(os.path.abspath(sys.argv[0]))
os.chdir(local_path)
sys.path.insert(0, local_path)
sys.path.insert(0, os.path.join(local_path, 'qutip')) # to retrive _version
# always rewrite _version
if os.path.exists('qutip/version.py'):
os.remove('qutip/version.py')
write_version_py()
#--------- check for fortran option -------------------#
if "--with-f90mc" in sys.argv:
with_f90mc = True
sys.argv.remove("--with-f90mc")
else:
with_f90mc = False
if not with_f90mc:
os.environ['FORTRAN_LIBS'] = 'FALSE'
print("Installing without the fortran mcsolver.")
else:
os.environ['FORTRAN_LIBS'] = 'TRUE'
os.environ['QUTIP_RELEASE'] = 'TRUE' if ISRELEASED else 'FALSE'
# remove needless error warnings for released version.
#if ISRELEASED:
# os.environ['CFLAGS'] = '-w'
# os.environ['FFLAGS'] = '-w'
# using numpy distutils to simplify install of data directory for testing
def configuration(parent_package='', top_path=None):
from numpy.distutils.misc_util import Configuration
config = Configuration(None, parent_package, top_path)
config.set_options(ignore_setup_xxx_py=True,
assume_default_configuration=True,
delegate_options_to_subpackages=True,
quiet=True)
config.add_subpackage('qutip')
config.get_version('qutip/version.py') # sets config.version
config.add_data_dir('qutip/tests')
return config
#--------- Setup commands go here ----------------#
setup(
name=NAME,
packages=PACKAGES,
include_dirs=INCLUDE_DIRS,
ext_modules=EXT_MODULES,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
keywords=KEYWORDS,
url=URL,
classifiers=CLASSIFIERS,
platforms=PLATFORMS,
requires=REQUIRES,
package_data=PACKAGE_DATA,
configuration=configuration
)