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.
  • 5,062
  • 2
  • 29
  • 34

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
  • 82,057
  • 50
  • 264
  • 435