File: setup.py

package info (click to toggle)
ptyprocess 0.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 252 kB
  • ctags: 122
  • sloc: python: 886; makefile: 149
file content (12 lines) | stat: -rw-r--r-- 326 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python

from distutils.core import setup

setup(name='ptyprocess',
      version='0.5.1',
      description='Run a subprocess in a pseudo terminal',
      author='Thomas Kluyver',
      author_email='thomas@kluyver.me.uk',
      url='https://github.com/pexpect/ptyprocess',
      packages=['ptyprocess']
     )