Mercurial > python-cmd2
comparison setup.py @ 112:e3b8eaadea56
going to collapse down out of overdone package structure
author | catherine@Elli.myhome.westell.com |
---|---|
date | Sat, 25 Oct 2008 19:28:51 -0400 |
parents | c1e5df33721f |
children | 7d215852f9a6 |
comparison
equal
deleted
inserted
replaced
111:c1e5df33721f | 112:e3b8eaadea56 |
---|---|
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", | |
6 packages=["cmd2",], | 7 packages=["cmd2",], |
7 package_dir={'cmd2': 'cmd2'}, | 8 package_dir={'cmd2': 'cmd2'}, |
8 package_data={'cmd2': ['example/*.*']}, | 9 package_data={'cmd2': ['example/*.txt', 'example/*.py']}, |
9 include_package_data=True, | |
10 version="0.4", | |
11 | 10 |
12 # metadata for upload to PyPI | 11 # metadata for upload to PyPI |
13 author = 'Catherine Devlin', | 12 author = 'Catherine Devlin', |
14 author_email = 'catherine.devlin@gmail.com', | 13 author_email = 'catherine.devlin@gmail.com', |
15 description = "Extra features for standard library's cmd module", | 14 description = "Extra features for standard library's cmd module", |
29 * Settable environment parameters | 28 * Settable environment parameters |
30 * Parsing commands with flags | 29 * Parsing commands with flags |
31 * > (filename), >> (filename) redirect output to file | 30 * > (filename), >> (filename) redirect output to file |
32 * < (filename) gets input from file | 31 * < (filename) gets input from file |
33 * bare >, >>, < redirect to/from paste buffer | 32 * bare >, >>, < redirect to/from paste buffer |
34 * test apps against sample session transcript (see example.py in source directory) | 33 * test apps against sample session transcript (see example/example.py) |
35 | 34 |
36 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. |
37 | 36 |
38 Usage samples at http://catherine.devlin.googlepages.com/cmd2.html | 37 Usage samples at http://catherine.devlin.googlepages.com/cmd2.html |
39 """, | 38 """, |