Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
victorlei committed Jun 21, 2018
1 parent 3505f96 commit bdad96b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
license = 'MIT',
keywords = 'convert translate matlab octave python',
url = 'https://github.com/victorlei/smop',
download_url = 'https://github.com/victorlei/smop/archive/master.zip',
download_url = 'https://github.com/victorlei/smop', #/archive/master.zip',
name = 'smop',
version = __VERSION__,
entry_points = { 'console_scripts': [ 'smop = smop.main:main', ], },
Expand All @@ -26,5 +26,5 @@
#test_suite = "smop.testsuite.test_lexer",
#include_package_data = True,
#package_data = { 'smop': ['*.m', 'Makefile'], },
install_requires = ['ply', 'numpy', 'scipy', 'networkx'],
install_requires = ['pytest', 'ply', 'numpy', 'scipy', 'networkx'],
)
4 changes: 2 additions & 2 deletions smop/test_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def main():
t0 = time.clock()
mv = solver(ai,af,0)
t1 = time.clock()
print t1-t0
print mv.shape
print(t1-t0)
print(mv.shape)

if __name__ == '__main__':
main()

0 comments on commit bdad96b

Please sign in to comment.