I'm building a python package which requires pywin32.
Adding pywin32 as a dependency doesn't work seamlessly, since it has a postinstall script which the user must run themselves.
Adding pypiwin32 as a dependency doesn't work because my package won't play nice with other packages which do require pywin32
I tried requiring both, but it turns out pywin32 and pypiwin32 can't coexist on the same python installation
Is there a way of specifying either pywin32 or pypiwin32 as a dependency? Or some other solution?