# Copyright 2015-2017 The MathWorks, Inc. # This setup.py is used to install mlarray if necessary (for instance, if the user needs # to overwrite an older version of mlarray installed with MATLAB Engine for Python). # It should not be confused with the generated setup.py used to install a user-built package. from distutils.core import setup if __name__ == '__main__': setup( name="matlabruntimeforpython", # The version identifier pertains to the mlarray library, which is not updated frequently. version="R2015b", description='A module to call MATLAB from Python', author='MathWorks', url='https://www.mathworks.com/', platforms=['Linux', 'Windows', 'MacOS'], package_dir={'': 'mlarray_dist'}, packages=['matlab','matlab._internal'] )