uninstall working

This commit is contained in:
Benedek Racz 2019-05-03 13:09:36 +02:00
parent 8b7042abd4
commit 7e1cb49816
5 changed files with 14 additions and 5 deletions

View File

View File

@ -1,6 +1,14 @@
# A simple example code for wexpect written in python-2.7
from __future__ import print_function
import sys
import os
here = os.path.dirname(os.path.abspath(__file__))
wexpectPath = os.path.dirname(here)
sys.path.insert(0, wexpectPath)
import wexpect
# Path of cmd executable:

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
pywin32>=220

View File

@ -1,8 +1,8 @@
[metadata]
name = wexpect
author = Noah Spurrier, Richard Holden, Marco Molteni, Kimberley Burchett, Robert Stone, Hartmut Goebel, Chad Schroeder, Erick Tryzelaar, Dave Kirby, Ids vander Molen, George Todd, Noel Taylor, Nicolas D. Cesar, Alexander Gattin, Geoffrey Marshall, Francisco Lourenco, Glen Mabey, Karthik Gurusamy, Fernando Perez, Corey Minyard, Jon Cohen, Guillaume Chazarain, Andrew Ryan, Nick Craig-Wood, Andrew Stone, Jorgen Grahn, Benedek Racz
author-email = betontalpfa@gmail.com
summary = Windows alternative of pexpect
name = wexpect
author = Noah Spurrier, Richard Holden, Marco Molteni, Kimberley Burchett, Robert Stone, Hartmut Goebel, Chad Schroeder, Erick Tryzelaar, Dave Kirby, Ids vander Molen, George Todd, Noel Taylor, Nicolas D. Cesar, Alexander Gattin, Geoffrey Marshall, Francisco Lourenco, Glen Mabey, Karthik Gurusamy, Fernando Perez, Corey Minyard, Jon Cohen, Guillaume Chazarain, Andrew Ryan, Nick Craig-Wood, Andrew Stone, Jorgen Grahn, Benedek Racz
author-email = betontalpfa@gmail.com
summary = Windows alternative of pexpect
description-file = README.md
description-content-type = text/markdown; charset=UTF-8
requires-python = >=2.6

View File

@ -6,6 +6,6 @@ setup(
setup_requires=['pbr'],
pbr=True,
packages=[''],
# packages=[''],
py_modules=['wexpect'],
)