forked from jonathf/matlab2cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·26 lines (25 loc) · 858 Bytes
/
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
"""Main installer."""
from setuptools import setup, find_packages
setup(
name="matlab2cpp",
version="2.0.1",
packages=find_packages("src"),
package_dir={"": "src"},
entry_points={"console_scripts": ["m2cpp = matlab2cpp:m2cpp"]},
url='http://github.com/jonathf/matlab2cpp',
license='BSD',
author="Jonathan Feinberg",
author_email="jonathan@feinberg.no",
description="Matlab to C++ transpiler",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development :: Compilers',
],
tests_require=["pytest", "pytest-runner"],
)