1'''
2$Revision: 485 $
3$Date: 2007-07-12 15:23:15 -0700 (Thu, 12 Jul 2007) $
4'''
5from distutils.core import setup
6setup (name='pexpect',
7    version='2.4',
8    py_modules=['pexpect', 'pxssh', 'fdpexpect', 'FSM', 'screen', 'ANSI'],
9    description='Pexpect is a pure Python Expect. It allows easy control of other applications.',
10    author='Noah Spurrier',
11    author_email='noah@noah.org',
12    url='http://pexpect.sourceforge.net/',
13    license='MIT license',
14    platforms='UNIX',
15)
16
17#    classifiers = [
18#        'Development Status :: 4 - Beta',
19#        'Environment :: Console',
20#        'Environment :: Console (Text Based)',
21#        'Intended Audience :: Developers',
22#        'Intended Audience :: System Administrators',
23#        'Intended Audience :: Quality Engineers',
24#        'License :: OSI Approved :: Python Software Foundation License',
25#        'Operating System :: POSIX',
26#        'Operating System :: MacOS :: MacOS X',
27#        'Programming Language :: Python',
28#        'Topic :: Software Development',
29#        'Topic :: Software Development :: Libraries :: Python Modules',
30#        'Topic :: Software Development :: Quality Assurance',
31#        'Topic :: Software Development :: Testing',
32#        'Topic :: System, System :: Archiving :: Packaging, System :: Installation/Setup',
33#        'Topic :: System :: Shells',
34#        'Topic :: System :: Software Distribution',
35#        'Topic :: Terminals, Utilities',
36#    ],
37
38
39
40