Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pcl-expect
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Per Cederqvist
pcl-expect
Commits
1377594a
Commit
1377594a
authored
21 years ago
by
Per Cederqvist
Browse files
Options
Downloads
Patches
Plain Diff
Distutils configuration, take 1.
parent
af1e464b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+41
-0
41 additions, 0 deletions
setup.py
with
41 additions
and
0 deletions
setup.py
0 → 100755
+
41
−
0
View file @
1377594a
#!/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
"
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment