Add assignments for unmodified classes
[pygtk-shell.git] / setup.py
blobb5d1f35392d339ad3ef932234929ed891483988b
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 """
4 The PyGTK Shell provides widgets derived from PyGTK optimized for
5 interactive programming as well as an interactive, extensible PyGTK console
6 for the rapid prototyping of GUI applications. It can be embedded by PyGTK
7 applications.
8 """
10 # Copyright (C) 2007,2009 Felix Rabe <public@felixrabe.net>
12 # This library is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU Lesser General Public
14 # License as published by the Free Software Foundation; either
15 # version 2.1 of the License, or (at your option) any later version.
17 # This library is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 # Lesser General Public License for more details.
22 # You should have received a copy of the GNU Lesser General Public License
23 # along with this library; if not, write to the Free Software Foundation,
24 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
26 from PyGTKShell.Core import pygtkshell_version
28 from distutils.core import setup
30 setup(
31 name = "pygtk-shell",
32 version = ".".join(map(str, pygtkshell_version)),
33 description = "Framework for interactive GUI programming",
34 long_description = __doc__.strip(),
35 author = "Felix Rabe",
36 author_email = "public@felixrabe.textdriven.com",
37 url = "http://felixrabe.textdriven.com/pygtk-shell/",
38 packages = [
39 "PyGTKShell",
41 scripts = ["pygtk_shell_rawconsole.py"],
42 classifiers = [
43 "Development Status :: 3 - Alpha",
44 "Environment :: X11 Applications :: GTK",
45 "Environment :: Win32 (MS Windows)",
46 "Intended Audience :: Developers",
47 "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
48 "Operating System :: Microsoft :: Windows",
49 "Operating System :: POSIX",
50 "Programming Language :: Python",
51 "Topic :: Software Development :: User Interfaces",
52 "Topic :: Software Development :: Libraries :: Python Modules",
53 "Topic :: Text Editors :: Integrated Development Environments (IDE)",