|
From: <mur...@us...> - 2011-04-02 19:32:40
|
Revision: 151
http://python-control.svn.sourceforge.net/python-control/?rev=151&view=rev
Author: murrayrm
Date: 2011-04-02 19:32:33 +0000 (Sat, 02 Apr 2011)
Log Message:
-----------
added examples/ and tests/ to source distribution; updated version number to 0.4c
Modified Paths:
--------------
trunk/ChangeLog
trunk/README
trunk/setup.py
Added Paths:
-----------
trunk/MANIFEST.in
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2011-04-02 18:34:21 UTC (rev 150)
+++ trunk/ChangeLog 2011-04-02 19:32:33 UTC (rev 151)
@@ -1,5 +1,10 @@
2011-04-02 Richard Murray <mu...@ma...>
+ * MANIFEST.in: Added MANIFEST.in file to include examples and tests
+ in source distribution
+
+ * README: Updated to include information on how to run unit tests.
+
* setup.py: updated version number to 0.4c
---- control-0.4b released -----
Added: trunk/MANIFEST.in
===================================================================
--- trunk/MANIFEST.in (rev 0)
+++ trunk/MANIFEST.in 2011-04-02 19:32:33 UTC (rev 151)
@@ -0,0 +1,2 @@
+include examples/*.py
+include tests/*.py
Modified: trunk/README
===================================================================
--- trunk/README 2011-04-02 18:34:21 UTC (rev 150)
+++ trunk/README 2011-04-02 19:32:33 UTC (rev 151)
@@ -16,3 +16,10 @@
examples/secord-matlab.py (using ipython -pylab). It should generate
a step response, Bode plot and Nyquist plot for a simple second order
linear system.
+
+You can also run a set of unit tests to make sure that everything is
+working correctly. After installation, run
+
+ python tests/test_all.py
+
+from the source distribution directory.
Modified: trunk/setup.py
===================================================================
--- trunk/setup.py 2011-04-02 18:34:21 UTC (rev 150)
+++ trunk/setup.py 2011-04-02 19:32:33 UTC (rev 151)
@@ -2,13 +2,13 @@
from distutils.core import setup
-setup(name='control',
- version='0.4c',
- description='Python Control Systems Library',
- author='Richard Murray',
- author_email='mu...@cd...',
- url='http://python-control.sourceforge.net',
- requires='scipy',
- packages=['control'],
- package_dir = {'control':'src'},
+setup(name = 'control',
+ version = '0.4c',
+ description = 'Python Control Systems Library',
+ author = 'Richard Murray',
+ author_email = 'mu...@cd...',
+ url = 'http://python-control.sourceforge.net',
+ requires = ['scipy', 'matplotlib'],
+ package_dir = {'control' : 'src'},
+ packages = ['control'],
)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|