summaryrefslogtreecommitdiff
path: root/README.txt
diff options
context:
space:
mode:
authorcliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2004-06-29 22:08:28 +0000
committercliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2004-06-29 22:08:28 +0000
commit845fd278b7a3c61f78b7a2ad8212676659dd7e10 (patch)
tree37331f66510ba8f27f87c34b59b842ffa13af780 /README.txt
parent0c367379384c7520d49fd876bff5dedcbfbbf58d (diff)
downloadpyserial-845fd278b7a3c61f78b7a2ad8212676659dd7e10.tar.gz
added py2exe demo script and a note in the readme
git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@114 f19166aa-fa4f-0410-85c2-fa1106f25c8a
Diffstat (limited to 'README.txt')
-rw-r--r--README.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.txt b/README.txt
index b476eb3..d29bbd6 100644
--- a/README.txt
+++ b/README.txt
@@ -209,6 +209,17 @@ Tips & Tricks
some platforms. Look at the tools from Roger Binns:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/bitpim/comscan/
+- When packagin a project with py2exe, it will likely print a warning about
+ missing modules 'javax.comm'. This warning is uncritical as the module is
+ used in the Jython implementation that is not used but packaged.
+
+ It can be avoided with:
+ setup(...
+ options = {'py2exe': {'excludes': ['javax.comm']}})
+
+ See also setup_demo.py in the examples.
+
+
References
----------
- Python: http://www.python.org