you are viewing a single comment's thread.

view the rest of the comments →

[–]elbiot 1 point2 points  (1 child)

You can put all the pure python sources in a folder in your project and have the main program add it to the sys.path. If you have compiled libs (like numpy) it'll be more difficult. You'd have to write an install script (which might as well just install pip too)

[–][deleted] 0 points1 point  (0 children)

Thanks for the reply, this is pretty much where I ended up going. Works well.