1

I'm trying to create a library to reuse among my projects. What is the best way to setup the library package so that I don't have to add and remove my library from teh virtual_env every time I make small a change.

Thanks

Du D.
  • 4,524
  • 2
  • 28
  • 33

1 Answers1

1

Use the following:

python setup.py develop

It will set up links from the folder where you are developing the code to your virtualenv.

More information: https://stackoverflow.com/a/26588871/315168

Community
  • 1
  • 1
Mikko Ohtamaa
  • 76,495
  • 46
  • 227
  • 378