Mercurial > python-cmd2
comparison setup.py @ 109:78c4db4c2045
all done but the proper packaging
author | catherine@dellzilla |
---|---|
date | Fri, 24 Oct 2008 16:54:45 -0400 |
parents | 83315599cde7 |
children | c1e5df33721f |
comparison
equal
deleted
inserted
replaced
108:f7b0152c57f9 | 109:78c4db4c2045 |
---|---|
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 packages=["cmd2",], | 6 packages=["cmd2",], |
7 version="0.3.7", | 7 version="0.4", |
8 #py_modules = ['cmd2','flagReader','bootstrap'], | 8 #py_modules = ['cmd2','flagReader','bootstrap'], |
9 | 9 |
10 # metadata for upload to PyPI | 10 # metadata for upload to PyPI |
11 author = 'Catherine Devlin', | 11 author = 'Catherine Devlin', |
12 author_email = 'catherine.devlin@gmail.com', | 12 author_email = 'catherine.devlin@gmail.com', |
27 * Special-character shortcut commands (beyond cmd's "@" and "!") | 27 * Special-character shortcut commands (beyond cmd's "@" and "!") |
28 * Settable environment parameters | 28 * Settable environment parameters |
29 * Parsing commands with flags | 29 * Parsing commands with flags |
30 * > (filename), >> (filename) redirect output to file | 30 * > (filename), >> (filename) redirect output to file |
31 * < (filename) gets input from file | 31 * < (filename) gets input from file |
32 * bare >, >>, < redirect to/from paste buffer | 32 * bare >, >>, < redirect to/from paste buffer |
33 * test apps against sample session transcript (see example.py in source directory) | |
33 | 34 |
34 Useable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd. | 35 Useable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd. |
35 | 36 |
36 Usage samples at http://catherine.devlin.googlepages.com/cmd2.html | 37 Usage samples at http://catherine.devlin.googlepages.com/cmd2.html |
37 """, | 38 """, |