comparison setup.py @ 238:0bae9aaf331a 0.5.0

0.5.0
author catherine@dellzilla
date Tue, 24 Mar 2009 14:15:31 -0400
parents 5da7d72e72ee
children 575652efb3d8
comparison
equal deleted inserted replaced
237:e91808980e59 238:0bae9aaf331a
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.4.8", 6 version="0.5.0",
7 py_modules=["cmd2",], 7 py_modules=["cmd2",],
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',
27 * Settable environment parameters 27 * Settable environment parameters
28 * Parsing commands with flags 28 * Parsing commands with flags
29 * > (filename), >> (filename) redirect output to file 29 * > (filename), >> (filename) redirect output to file
30 * < (filename) gets input from file 30 * < (filename) gets input from file
31 * bare >, >>, < redirect to/from paste buffer 31 * bare >, >>, < redirect to/from paste buffer
32 * accepts abbreviated commands when unambiguous
33 * `py` enters interactive Python console
32 * test apps against sample session transcript (see example/example.py) 34 * test apps against sample session transcript (see example/example.py)
33 35
34 Useable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd. 36 Useable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd.
35 37
36 Usage samples at http://catherine.devlin.googlepages.com/cmd2.html 38 Usage samples at http://catherine.devlin.googlepages.com/cmd2.html