Re: [python-win32] How to install pywin32 for Text only/TTY, excluding all GUI components

2020-05-26 Thread Tim Roberts
On May 26, 2020, at 6:29 AM, Vernon D. Cole wrote: > > I don't understand. If I include pywin32 as a pip requirement, then I get > the whole thing, I think. How can I "ship a package" without carrying the > unneeded parts around? I am under the impression that most people shipping Windows

Re: [python-win32] How to install pywin32 for Text only/TTY, excluding all GUI components

2020-05-26 Thread Vernon D. Cole
Tim: I don't understand. If I include pywin32 as a pip requirement, then I get the whole thing, I think. How can I "ship a package" without carrying the unneeded parts around? On Sun, May 24, 2020 at 12:28 AM Tim Roberts wrote: > On May 23, 2020, at 4:27 AM, Markus Kramer > wrote: > > >

Re: [python-win32] How to install pywin32 for Text only/TTY, excluding all GUI components

2020-05-24 Thread Markus Kramer
Greetings, I opened pull request 1530 with a proposal Best Regards, Markus On Sat, May 23, 2020 at 1:27 PM Markus Kramer wrote: > Hello, > I would like to discuss and contribute to an alternative pip package > without GUI: > - pip install

Re: [python-win32] How to install pywin32 for Text only/TTY, excluding all GUI components

2020-05-24 Thread Tim Roberts
On May 23, 2020, at 4:27 AM, Markus Kramer wrote: > > Hello, > I would like to discuss and contribute to an alternative pip package without > GUI: > - pip install pywin32 continues as is, e.g. includes Pythonwin. > - pip install pywin32nogui would contain no GUI components, e.g.

Re: [python-win32] How to install pywin32 for Text only/TTY, excluding all GUI components

2020-05-23 Thread Markus Kramer
Hello, I would like to discuss and contribute to an alternative pip package without GUI: - pip install pywin32 continues as is, e.g. includes Pythonwin. - pip install pywin32nogui would contain no GUI components, e.g. MFC.dll. What are your thoughts? As far as I can see, this would require

[python-win32] How to install pywin32 for Text only/TTY, excluding all GUI components

2020-03-18 Thread Markus Kramer
Hello, SaltStack is a text based, non-GUI Python application that uses pywin32. The GUI related parts of pywin32 are of no use, but increase the size. Can one install/compile pywin32 so, that only the test-based components are installed? I cannot find back an old discussion regarding this