comparison setup.py @ 30:786b3ea3e440

new version 0.3.1
author catherine@localhost
date Mon, 19 May 2008 09:57:23 -0400
parents c6e8b645c0ab
children 4f2d6f9f2080
comparison
equal deleted inserted replaced
29:c4bd5f1a6968 30:786b3ea3e440
1 #!/usr/bin/python 1 #!/usr/bin/python
2 from setuptools import setup, find_packages 2 from setuptools import setup, find_packages
3 3
4 setup( 4 setup(
5 name="cmd2", 5 name="cmd2",
6 version="0.3.0", 6 version="0.3.1",
7 py_modules = ['cmd2','flagReader','bootstrap'], 7 py_modules = ['cmd2','flagReader','bootstrap'],
8 8
9 # metadata for upload to PyPI 9 # metadata for upload to PyPI
10 author = 'Catherine Devlin', 10 author = 'Catherine Devlin',
11 author_email = 'catherine.devlin@gmail.com', 11 author_email = 'catherine.devlin@gmail.com',
24 * Multi-line commands 24 * Multi-line commands
25 * Case-insensitive commands 25 * Case-insensitive commands
26 * Special-character shortcut commands (beyond cmd's "@" and "!") 26 * Special-character shortcut commands (beyond cmd's "@" and "!")
27 * Settable environment parameters 27 * Settable environment parameters
28 * Parsing commands with flags 28 * Parsing commands with flags
29 * Redirection to file with >, >>; input from file with < 29 * > (filename), >> (filename) redirect output to file
30 * < (filename) gets input from file
31 * bare >, >>, < redirect to/from paste buffer
30 32
31 Useable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd. 33 Useable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd.
32 34
33 Usage samples at http://catherine.devlin.googlepages.com/cmd2.html 35 Usage samples at http://catherine.devlin.googlepages.com/cmd2.html
34 """, 36 """,