-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
52 lines (49 loc) · 1.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
#!/usr/bin/env javascript
#
# Copyright (c) Bo Peng and the University of Texas MD Anderson Cancer Center
# Distributed under the terms of the 3-clause BSD License.
from setuptools import find_packages, setup
# obtain version of SoS
with open('src/sos_matlab/_version.py') as version:
for line in version:
if line.startswith('__version__'):
__version__ = eval(line.split('=')[1])
break
setup(name = "sos-matlab",
version = __version__,
description = 'SoS Notebook extension for Matlab and Octave',
author = 'Bo Peng',
url = 'https://github.com/vatlab/SOS',
author_email = '[email protected]',
maintainer = 'Bo Peng',
maintainer_email = '[email protected]',
license = '3-clause BSD',
include_package_data = True,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
],
packages = find_packages('src'),
package_dir = {'': 'src'},
install_requires=[
'sos>=0.18.0',
'sos-notebook>=0.24.0',
'scipy',
],
entry_points= '''
[sos_languages]
MATLAB = sos_matlab.kernel:sos_MATLAB
Octave = sos_matlab.kernel:sos_MATLAB
[sos_converters]
m-ipynb = sos_matlab.converter:OctaveToNotebookConverter
'''
)