Skip to content

Commit 3d8d7c9

Browse files
committed
add packages = ... and scripts = ... to setup.py
packages = ['pymodel'], scripts = [... 'bin/pma', 'bin/pmg', ... ], also add pymodel/__init__.py to make it a package now python setup.py install makes .../site-packages/pymodel and /usr/local/bin/pma etc.
1 parent 2dfbb93 commit 3d8d7c9

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

pymodel/__init__.py

Whitespace-only changes.

setup.py

+23
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,29 @@
3535
download_url = 'http://staff.washington.edu/jon/pymodel/www/',
3636
license = 'BSD License',
3737

38+
packages = ['pymodel'],
39+
40+
scripts = [ 'bin/clogdiff',
41+
'bin/clogdiff.bat',
42+
'bin/dotpdf',
43+
'bin/dotpdf.bat',
44+
'bin/dotps',
45+
'bin/dotps.bat',
46+
'bin/dotsvg',
47+
'bin/dotsvg.bat',
48+
'bin/pma',
49+
'bin/pmg',
50+
'bin/pmt',
51+
'bin/pmv',
52+
'bin/pymodel_paths',
53+
'bin/pymodel_paths.bat',
54+
'bin/tclean',
55+
'bin/tclean.bat',
56+
'bin/tdiff',
57+
'bin/tdiff.bat',
58+
'bin/trun',
59+
'bin/wsgirunner', ],
60+
3861
keywords = 'model-based testing python model on-the-fly offline composition finite state machine harness stepper automated test run suite oracle nondeterminism synchronizing interleaving strategy coverage protocol trace scenario',
3962

4063
# from http://pypi.python.org/pypi?%3Aaction=list_classifiers

0 commit comments

Comments
 (0)