From 1377594a1f8c43a5ac1727b9081a8a380afe3002 Mon Sep 17 00:00:00 2001 From: Per Cederqvist <ceder@lysator.liu.se> Date: Sun, 26 Oct 2003 23:53:14 +0000 Subject: [PATCH] Distutils configuration, take 1. --- setup.py | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..2e3557a --- /dev/null +++ b/setup.py @@ -0,0 +1,41 @@ +#!/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" + ) -- GitLab