-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
50 lines (45 loc) · 1.17 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
"""
MlabPy installation script (requires setuptools).
Copyright (C) 2015, led02 <[email protected]>
"""
from setuptools import setup, find_packages
setup(
# Meta data
name="mlabpy",
version="0.0.1",
description="A MatLAB frontend for Python.",
url="https://github.com/led02/mlabpy",
author="led02",
author_email="[email protected]",
# Extended meta data
license="MIT",
keywords='python matlab runtime parser interpreter compiler',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Indended Audience :: Scientists',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: MatLAB',
],
# Dependencies
install_requires=[
'setuptools',
'numpy>=1.9',
'ply>=3.4',
],
extras_require={
'scipy': ['scipy>=1.9'],
},
# Contents
packages=find_packages('src'),
package_dir={
'': 'src',
},
package_data={
'mlabpy.samples': ['test.m', 'mybench.m'],
},
entry_points={
'console_scripts': ['mlabpy=mlabpy.run:main'],
},
)