Initial import
[mycode.git] / pys60 / pyrepl / .svn / text-base / setup.py.svn-base
blob14f040df45f4db7d670b1ecb9f53a581db07242e
1 #   Copyright 2000-2004 Michael Hudson mwh@python.net
3 #                        All Rights Reserved
6 # Permission to use, copy, modify, and distribute this software and
7 # its documentation for any purpose is hereby granted without fee,
8 # provided that the above copyright notice appear in all copies and
9 # that both that copyright notice and this permission notice appear in
10 # supporting documentation.
12 # THE AUTHOR MICHAEL HUDSON DISCLAIMS ALL WARRANTIES WITH REGARD TO
13 # THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
14 # AND FITNESS, IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL,
15 # INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
16 # RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
17 # CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
18 # CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 from distutils.core import setup, Extension
22 long_desc = """\
23 pyrepl is a Python library, inspired by readline, for building flexible
24 command line interfaces, featuring:
25  * sane multi-line editing
26  * history, with incremental search
27  * completion, including displaying of available options
28  * a fairly large subset of the readline emacs-mode keybindings
29  * a liberal, Python-style, license
30  * a new python top-level."""
33 setup(
34     name = "pyrepl",
35     version = "0.8.1",
36     author = "Michael Hudson",
37     author_email = "mwh@python.net",
38     url = "http://codespeak.net/pyrepl/",
39     license = "MIT X11 style",
40     description = "A library for building flexible command line interfaces",
41     platforms = ["unix", "linux"],
42     packages = ["pyrepl"],
43     #ext_modules = [Extension("_pyrepl_utils", ["pyrepl_utilsmodule.c"])],
44     scripts = ["pythoni"],
45     long_description = long_desc,
46     )