Skip to content
Snippets Groups Projects
Commit 1377594a authored by Per Cederqvist's avatar Per Cederqvist
Browse files

Distutils configuration, take 1.

parent af1e464b
No related branches found
No related tags found
No related merge requests found
setup.py 0 → 100755
#!/usr/bin/env python
from distutils.core import setup
classifiers="""\
Development Status :: 3 - Alpha
Environment :: Console
Environment :: No Input/Output (Daemon)
Environment :: Other Environment
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: GNU General Public License (GPL)
Natural Language :: English
Operating System :: POSIX
Programming Language :: Python
Topic :: Communications
Topic :: Internet
Topic :: Software Development
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Testing
Topic :: Terminals :: Serial
Topic :: Terminals :: Telnet
"""
setup(name="pcl-expect",
version="0.1.0",
description="Pure Python expect module",
author="Per Cederqvist",
author_email="ceder@lysator.liu.se",
url="http://www.lysator.liu.se/~ceder/pcl-expect/",
packages=['pcl_expect'],
license="GNU GPL",
long_description="""
Pcl-expect is a pure Python expect-like module, with a few twists.
For example, not only can you talk to processes via a pty, but you can
also talk to a Telnet server, any TCP server, a serial port, et c.
""",
classifiers = filter(None, classifiers.split("\n")),
platforms = ["POSIX"],
keywords = "expect pcl-expect pty telnet serial pipe tcp popen"
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment