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

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