You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
bdwgc
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm-project
clang
clang-tools-extra
compiler-rt
libcxx
libcxxabi
libunwind
lld
lldb
cmake
docs
examples
include
lit
lldb.xcodeproj
lldb.xcworkspace
packages
resources
scripts
source
third_party
Python
module
pexpect-2.4
doc
examples
ANSI.py
FSM.py
INSTALL
LICENSE
PKG-INFO
README
fdpexpect.py
pexpect.py
pxssh.py
screen.py
setup.py
progress
six
unittest2
tools
unittests
utils
www
.arcconfig
.clang-format
.gitignore
CMakeLists.txt
CODE_OWNERS.txt
INSTALL.txt
LICENSE.TXT
use_lldb_suite_root.py
llvm
openmp
polly
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
llvm
m4
man
mcs
mk
mono
msvc
netcore
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
37 lines
1.4 KiB
Python
37 lines
1.4 KiB
Python
![]() |
'''
|
||
|
$Revision: 485 $
|
||
|
$Date: 2007-07-12 15:23:15 -0700 (Thu, 12 Jul 2007) $
|
||
|
'''
|
||
|
from distutils.core import setup
|
||
|
setup(name='pexpect',
|
||
|
version='2.4',
|
||
|
py_modules=['pexpect', 'pxssh', 'fdpexpect', 'FSM', 'screen', 'ANSI'],
|
||
|
description='Pexpect is a pure Python Expect. It allows easy control of other applications.',
|
||
|
author='Noah Spurrier',
|
||
|
author_email='noah@noah.org',
|
||
|
url='http://pexpect.sourceforge.net/',
|
||
|
license='MIT license',
|
||
|
platforms='UNIX',
|
||
|
)
|
||
|
|
||
|
# classifiers = [
|
||
|
# 'Development Status :: 4 - Beta',
|
||
|
# 'Environment :: Console',
|
||
|
# 'Environment :: Console (Text Based)',
|
||
|
# 'Intended Audience :: Developers',
|
||
|
# 'Intended Audience :: System Administrators',
|
||
|
# 'Intended Audience :: Quality Engineers',
|
||
|
# 'License :: OSI Approved :: Python Software Foundation License',
|
||
|
# 'Operating System :: POSIX',
|
||
|
# 'Operating System :: MacOS :: MacOS X',
|
||
|
# 'Programming Language :: Python',
|
||
|
# 'Topic :: Software Development',
|
||
|
# 'Topic :: Software Development :: Libraries :: Python Modules',
|
||
|
# 'Topic :: Software Development :: Quality Assurance',
|
||
|
# 'Topic :: Software Development :: Testing',
|
||
|
# 'Topic :: System, System :: Archiving :: Packaging, System :: Installation/Setup',
|
||
|
# 'Topic :: System :: Shells',
|
||
|
# 'Topic :: System :: Software Distribution',
|
||
|
# 'Topic :: Terminals, Utilities',
|
||
|
# ],
|