setup.py 10.5 KB
Newer Older
1
2
3
"""
setup.py: Used for building python wrappers for Simbios' OpenMM library.
"""
4
5
6
7
8
import ast
import re
import os
import sys
import platform
9
import numpy
10
from setuptools import setup
peastman's avatar
peastman committed
11
from Cython.Build import cythonize
12

13
14
15
MAJOR_VERSION_NUM='@OPENMM_MAJOR_VERSION@'
MINOR_VERSION_NUM='@OPENMM_MINOR_VERSION@'
BUILD_INFO='@OPENMM_BUILD_VERSION@'
16
17
IS_RELEASED = False

Robert McGibbon's avatar
merge  
Robert McGibbon committed
18
__author__ = "Peter Eastman"
19
__version__ = "%s.%s" % (MAJOR_VERSION_NUM, MINOR_VERSION_NUM)
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41

def reportError(message):
    sys.stdout.write("ERROR: ")
    sys.stdout.write(message)
    sys.stdout.write("\nExiting\n")
    sys.exit(1)

def removeRecursive(dir):
    for file in os.listdir(dir):
        path = os.path.join(dir, file)
        if os.path.isdir(path):
            removeRecursive(path)
        else:
            os.remove(path)
    os.rmdir(dir)

def removePackage(mod, verbose):
        try:
            pathList = mod.__path__
        except AttributeError:
            return
        if len(pathList) > 1:
42
43
44
           raise Exception("more than one item in openmm.__path__")
        installPath = pathList[0]
        if os.path.exists(installPath):
45
            if verbose:
46
47
                sys.stdout.write('REMOVING "%s"\n' % installPath)
            removeRecursive(installPath)
48
49
50
51
52
53
54
55

def uninstall(verbose=True):
    save_path=sys.path[:]
    sys.path=[]
    for item in save_path:
        if item!='.' and item!=os.getcwd():
            sys.path.append(item)
    try:
56
57
        import simtk.openmm
        removePackage(simtk.openmm, verbose)
58
59
60
61
62
63
64
65
    except ImportError:
        pass

    try:
        import simtk.unit as unit
        removePackage(unit, verbose)
    except ImportError:
        pass
66
67
68
69
70
71

    try:
        import openmm
        removePackage(openmm, verbose)
    except ImportError:
        pass
72
73
74
    sys.path=save_path


75
def writeVersionPy(filename="openmm/version.py", major_version_num=MAJOR_VERSION_NUM,
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
                     minor_version_num=MINOR_VERSION_NUM, build_info=BUILD_INFO):
    """Write a version.py file into the python source directory before installation.
    If a version.py file already exists, we assume that it contains only the git_revision
    information, since from within this python session in the python staging directory, we're
    not in the version controlled directory hierarchy.

    When cmake is copying files into the PYTHON_STAGING_DIRECTORY, it will write the
    git revision to version.py. We read that, and then overwrite it.
    """

    cnt = """
# THIS FILE IS GENERATED FROM OPENMM SETUP.PY
short_version = '%(version)s'
version = '%(version)s'
full_version = '%(full_version)s'
git_revision = '%(git_revision)s'
release = %(isrelease)s
Robert T. McGibbon's avatar
Robert T. McGibbon committed
93
openmm_library_path = r'%(path)s'
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116

if not release:
    version = full_version
"""

    if os.path.exists(filename):
        # git_revision is written to the file by cmake
        with open(filename) as f:
            text = f.read()
            match = re.search(r"git_revision\s+=\s+(.*)", text, re.MULTILINE)
        try:
            git_revision = ast.literal_eval(match.group(1))
        except:
            # except anything, including no re match or
            # literal_eval failing
            git_revision = 'Unknown'
    else:
        git_revision = 'Unknown'

    version = full_version = '%s.%s.%s' % (major_version_num, minor_version_num, build_info)
    if not IS_RELEASED:
        full_version += '.dev-' + git_revision[:7]

117
    with open(filename, 'w') as a:
118
119
120
        a.write(cnt % {'version': version,
                       'full_version' : full_version,
                       'git_revision' : git_revision,
121
122
                       'isrelease': str(IS_RELEASED),
                       'path': os.getenv('OPENMM_LIB_PATH')})
123
124


125
126
127
def buildKeywordDictionary(major_version_num=MAJOR_VERSION_NUM,
                           minor_version_num=MINOR_VERSION_NUM,
                           build_info=BUILD_INFO):
128
    from setuptools import Extension
129
130
131
132
133
    setupKeywords = {}
    setupKeywords["name"]              = "OpenMM"
    setupKeywords["version"]           = "%s.%s.%s" % (major_version_num,
                                                       minor_version_num,
                                                       build_info)
134
    setupKeywords["author"]            = "Peter Eastman"
135
136
    setupKeywords["license"]           = \
    "Python Software Foundation License (BSD-like)"
137
138
139
140
    setupKeywords["url"]               = "https://openmm.org"
    setupKeywords["download_url"]      = "https://openmm.org"
    setupKeywords["packages"]          = [
                                          "simtk",
141
                                          "simtk.unit",
142
143
                                          "simtk.openmm",
                                          "simtk.openmm.app",
144
145
146
147
148
149
150
151
152
                                          "openmm",
                                          "openmm.unit",
                                          "openmm",
                                          "openmm.app",
                                          "openmm.app.internal",
                                          "openmm.app.internal.charmm",
                                          "openmm.app.internal.pdbx",
                                          "openmm.app.internal.pdbx.reader",
                                          "openmm.app.internal.pdbx.writer"]
153
    setupKeywords["data_files"]        = []
154
    setupKeywords["package_data"]      = {"openmm" : [],
155
                                          "openmm.app" : ['data/*.xml', 'data/*.pdb', 'data/amber14/*.xml', 'data/charmm36/*.xml', 'data/implicit/*.xml'],
156
                                          "openmm.app.internal" : []}
157
    setupKeywords["install_requires"]  = ["numpy"]
158
159
160
161
    setupKeywords["platforms"]         = ["Linux", "Mac OS X", "Windows"]
    setupKeywords["description"]       = \
    "Python wrapper for OpenMM (a C++ MD package)"
    setupKeywords["long_description"]  = \
Robert McGibbon's avatar
Robert McGibbon committed
162
163
164
165
166
    """OpenMM is a toolkit for molecular simulation. It can be used either as a
    stand-alone application for running simulations, or as a library you call
    from your own code. It provides a combination of extreme flexibility
    (through custom forces and integrators), openness, and high performance
    (especially on recent GPUs) that make it truly unique among simulation codes.
167
168
169
170
171
172
173
    """

    define_macros = [('MAJOR_VERSION', major_version_num),
                     ('MINOR_VERSION', minor_version_num)]

    libraries=['OpenMM',
               'OpenMMAmoeba',
174
               'OpenMMRPMD',
175
               'OpenMMDrude',
176
177
178
179
180
181
182
183
184
              ]
    if 'OPENMM_USE_DEBUG_LIBS' in os.environ:
        if platform.system() == "Windows":
            raise Exception("use of OpenMM debug libs not supported on Win OS")
        else:
            sys.stdout.write("WARNING: using debug libs:\n")
            for ii in range(len(libraries)):
                libraries[ii]="%s_d" % libraries[ii]
                sys.stdout.write("%s\n" % libraries[ii])
Robert McGibbon's avatar
Robert McGibbon committed
185

186
187
188
189
190
191
192
    openmm_include_path = os.getenv('OPENMM_INCLUDE_PATH')
    if not openmm_include_path:
        reportError("Set OPENMM_INCLUDE_PATH to point to the include directory for OpenMM")
    openmm_lib_path = os.getenv('OPENMM_LIB_PATH')
    if not openmm_lib_path:
        reportError("Set OPENMM_LIB_PATH to point to the lib directory for OpenMM")

Andy Simmonett's avatar
Andy Simmonett committed
193
    extra_compile_args=['-std=c++11']
194
195
196
197
198
199
200
201
    extra_link_args=[]
    if platform.system() == "Windows":
        define_macros.append( ('WIN32', None) )
        define_macros.append( ('_WINDOWS', None) )
        define_macros.append( (' _MSC_VER', None) )
        extra_compile_args.append('/EHsc')
    else:
        if platform.system() == 'Darwin':
202
203
204
205
206
            extra_compile_args += ['-stdlib=libc++']
            extra_link_args += ['-stdlib=libc++', '-Wl', '-rpath', openmm_lib_path]
            if 'MACOSX_DEPLOYMENT_TARGET' not in os.environ and platform.processor() != 'arm':
                extra_compile_args += ['-mmacosx-version-min=10.7']
                extra_link_args += ['-mmacosx-version-min=10.7']
207
208
209
210
211
            # Hard-code CC and CXX to clang, since gcc/g++ will *not* work with
            # Anaconda, despite the fact that distutils will try to use them.
            # System Python, homebrew, and MacPorts on Macs will always use
            # clang, so this hack should always work and fix issues with users
            # that have GCC installed from MacPorts or homebrew *and* Anaconda
212
213
214
            if 'CC' not in os.environ:
                os.environ['CC'] = 'clang'
                os.environ['CXX'] = 'clang++'
215
216
217

    library_dirs=[openmm_lib_path]
    include_dirs=openmm_include_path.split(';')
218
    include_dirs.append(numpy.get_include())
219

220
    extensionArgs = {"name": "openmm._openmm",
peastman's avatar
peastman committed
221
222
223
224
225
226
227
228
229
230
                    "sources": ["src/swig_doxygen/OpenMMSwig.cxx"],
                    "include_dirs": include_dirs,
                    "define_macros": define_macros,
                    "library_dirs": library_dirs,
                    "libraries": libraries,
                    "extra_compile_args": extra_compile_args,
                    "extra_link_args": extra_link_args}
    if platform.system() != "Windows":
        extensionArgs["runtime_library_dirs"] = library_dirs
    setupKeywords["ext_modules"] = [Extension(**extensionArgs)]
231
    setupKeywords["ext_modules"] += cythonize('openmm/app/internal/*.pyx')
232

Raul's avatar
Raul committed
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
    setupKeywords["ext_modules"] +=cythonize(Extension(
        "openmm.app.internal.xtc_utils",
        sources=[
            "openmm/app/internal/xtc_utils/src/xdrfile_xtc.cpp",
            "openmm/app/internal/xtc_utils/src/xdrfile.cpp",
            "openmm/app/internal/xtc_utils/src/xtc.cpp",
            "openmm/app/internal/xtc_utils/xtc.pyx",
        ],
        include_dirs=include_dirs +[
            "openmm/app/internal/xtc_utils/include",
            "openmm/app/internal/xtc_utils/",
            numpy.get_include(),
        ],
        language="c++",
    ))

249
250
251
    outputString = ''
    firstTab     = 40
    secondTab    = 60
Peter Eastman's avatar
Peter Eastman committed
252
    for key in sorted(iter(setupKeywords)):
253
254
         value         = setupKeywords[key]
         outputString += key.rjust(firstTab) + str( value ).rjust(secondTab) + "\n"
Robert McGibbon's avatar
Robert McGibbon committed
255

Peter Eastman's avatar
Peter Eastman committed
256
    sys.stdout.write("%s" % outputString)
257
258

    return setupKeywords
Robert McGibbon's avatar
Robert McGibbon committed
259

260
261

def main():
262
263
    if sys.version_info < (2, 7):
        reportError("OpenMM requires Python 2.7 or better.")
264
265
266
267
    if platform.system() == 'Darwin':
        macVersion = [int(x) for x in platform.mac_ver()[0].split('.')]
        if tuple(macVersion) < (10, 5):
            reportError("OpenMM requires Mac OS X Leopard (10.5) or better.")
268
269
270
271
    try:
        uninstall()
    except:
        pass
272
    setupKeywords=buildKeywordDictionary()
273
    writeVersionPy()
274
275
276
277
    setup(**setupKeywords)

if __name__ == '__main__':
    main()