I am wondering if there is a way to set environment variables when I use pip to install python wheel I built.
Can I wirte something in setup.py to get this:
pip install wheel_0_I_built
== pip install wheel_1_I_built
+ export MY_ENV=var
where wheel_0_I_built and wheel_1_I_built have same function but wheel_0_I_built sets environment variable when being installed.
Thanks