From 04cdcb0feb369ac4c60e10ccdc139c57e8b52e62 Mon Sep 17 00:00:00 2001 From: Zearin Date: Fri, 7 Oct 2011 10:34:23 -0400 Subject: Removed leftovers from installing with pip. Oops! I noticed there was a bunch of extra crap left over from when I installed this module onto my own system. I thought it wouldn't have modified itself at the time (just the Python module library on my system), but I was wrong. Begone, useless cruft! --- doxygen/html/setup_8py_source.html | 190 ------------------------------------- 1 file changed, 190 deletions(-) delete mode 100644 doxygen/html/setup_8py_source.html (limited to 'doxygen/html/setup_8py_source.html') diff --git a/doxygen/html/setup_8py_source.html b/doxygen/html/setup_8py_source.html deleted file mode 100644 index 7287d10..0000000 --- a/doxygen/html/setup_8py_source.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - -Cmd2: /Users/amrogers/Developer/Projects/cmd2/setup.py Source File - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - -
-
Cmd2 - -
- -
-
- - - - - -
-
- -
-
-
- -
-
-
-
setup.py
-
-
-Go to the documentation of this file.
00001 #!/usr/bin/python
-00002 try:
-00003     from setuptools import setup, find_packages
-00004 except ImportError:
-00005     from distutils.core import setup
-00006     def find_packages():
-00007         return ['sqlpython']
-00008 import sys
-00009 
-00010 install_requires = ['pyparsing>=1.5.6']
-00011 setup(
-00012     name="cmd2",
-00013     version="0.6.4",
-00014     py_modules=["cmd2"],
-00015     use_2to3=True,
-00016     
-00017     # metadata for upload to PyPI
-00018     author = 'Catherine Devlin',
-00019     author_email = 'catherine.devlin@gmail.com',
-00020     description = "Extra features for standard library's cmd module",
-00021     license = 'MIT',
-00022     keywords = 'command prompt console cmd',
-00023     url = 'http://packages.python.org/cmd2/',
-00024     install_requires = install_requires,
-00025     long_description = """Enhancements for standard library's cmd module.
-00026 
-00027 Drop-in replacement adds several features for command-prompt tools:
-00028 
-00029     * Searchable command history (commands: "hi", "li", "run")
-00030     * Load commands from file, save to file, edit commands in file
-00031     * Multi-line commands
-00032     * Case-insensitive commands
-00033     * Special-character shortcut commands (beyond cmd's "@" and "!")
-00034     * Settable environment parameters
-00035     * Parsing commands with flags
-00036     * > (filename), >> (filename) redirect output to file
-00037     * < (filename) gets input from file
-00038     * bare >, >>, < redirect to/from paste buffer
-00039     * accepts abbreviated commands when unambiguous
-00040     * `py` enters interactive Python console
-00041     * test apps against sample session transcript (see example/example.py)
-00042 
-00043 Useable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd.
-00044 
-00045 Running `2to3 <http://docs.python.org/library/2to3.html>` against ``cmd2.py`` 
-00046 generates working, Python3-based code.
-00047 
-00048 See docs at http://packages.python.org/cmd2/
-00049 """,
-00050 
-00051     classifiers=[
-00052         'Development Status :: 4 - Beta',
-00053         'Environment :: Console',
-00054         'Operating System :: OS Independent',
-00055         'Intended Audience :: Developers',
-00056         'Intended Audience :: System Administrators',
-00057         'Programming Language :: Python',
-00058         'License :: OSI Approved :: MIT License',
-00059         'Topic :: Software Development :: Libraries :: Python Modules',
-00060     ],
-00061     )
-00062 
-
-
- - - - - -- cgit v1.2.1