Skip to content

Commit fcbe78d

Browse files
committed
added examples/ and tests/ to source distribution; updated version number to 0.4c
1 parent ac020f6 commit fcbe78d

File tree

4 files changed

+23
-9
lines changed

4 files changed

+23
-9
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
2011-04-02 Richard Murray <murray@malabar.local>
22

3+
* MANIFEST.in: Added MANIFEST.in file to include examples and tests
4+
in source distribution
5+
6+
* README: Updated to include information on how to run unit tests.
7+
38
* setup.py: updated version number to 0.4c
49

510
---- control-0.4b released -----

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include examples/*.py
2+
include tests/*.py

README

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,10 @@ To see if things are working, you can run the script
1616
examples/secord-matlab.py (using ipython -pylab). It should generate
1717
a step response, Bode plot and Nyquist plot for a simple second order
1818
linear system.
19+
20+
You can also run a set of unit tests to make sure that everything is
21+
working correctly. After installation, run
22+
23+
python tests/test_all.py
24+
25+
from the source distribution directory.

setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
from distutils.core import setup
44

5-
setup(name='control',
6-
version='0.4c',
7-
description='Python Control Systems Library',
8-
author='Richard Murray',
9-
author_email='murray@cds.caltech.edu',
10-
url='http://python-control.sourceforge.net',
11-
requires='scipy',
12-
packages=['control'],
13-
package_dir = {'control':'src'},
5+
setup(name = 'control',
6+
version = '0.4c',
7+
description = 'Python Control Systems Library',
8+
author = 'Richard Murray',
9+
author_email = 'murray@cds.caltech.edu',
10+
url = 'http://python-control.sourceforge.net',
11+
requires = ['scipy', 'matplotlib'],
12+
package_dir = {'control' : 'src'},
13+
packages = ['control'],
1414
)

0 commit comments

Comments
 (0)