forked from victorlei/smop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 999 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
27
28
29
30
import os
from setuptools import setup
from smop.version import __version__ as __VERSION__
#try:
# __VERSION__ = os.popen("git describe --tags").read().strip()
#except OSError as e:
# __VERSION__ = ""
#
#open("smop/version.py","w").write("__version__='%s'" % __VERSION__)
setup(
author = 'Victor Leikehman',
author_email = '[email protected]',
description = 'Matlab to Python converter',
license = 'MIT',
keywords = 'convert translate matlab octave python',
url = 'https://github.com/victorlei/smop',
download_url = 'https://github.com/victorlei/smop', #/archive/master.zip',
name = 'smop',
version = __VERSION__,
entry_points = { 'console_scripts': [ 'smop = smop.main:main', ], },
packages = ['smop'],
#package_dir = {'':'src'},
#test_suite = "smop.testsuite.test_lexer",
#include_package_data = True,
#package_data = { 'smop': ['*.m', 'Makefile'], },
install_requires = ['pytest', 'ply', 'numpy', 'scipy', 'networkx'],
)