Neuroglycerin / neukrill-net-tools

Tools coded as part of the NDSB competition.
MIT License
0 stars 0 forks source link

Venv .pth file #3

Closed gngdb closed 9 years ago

gngdb commented 9 years ago

When creating our virtual environments we should add this tools repo to the path. Then, when we're working the work repo it will be ready for import. Looks like the right way to do this is using .pth files.

gngdb commented 9 years ago

Could either write a script to do this automatically (and then why not have one that sets up the whole venv?) or could just write more instructions on how to do this.

fmaguire commented 9 years ago

Running pip install -e . or python setup.py develop will add the tools module to the venv but allow us to modify the code in tools without having to reinstall the module on each change.

Updated tools repo README to explain this.