I have been programming various scientific tools for near five years. Some of my larger programs can have up to 1000 lines of code, including defining functions. I would like to break up my programs into more manageable chunks, ideally creating smaller programming tools I can call on to solve a particular class of problems. Ideally, I would like to be able to share my programs with my teammates.
HN, is there an ideal structure for building a "tool set" of programs? What are some books or online courses that illustrate how to set up programs? Best practices?
Any direction is appreciated. If it matters, I am mainly using python.
2. Sharing with coworkers depends on toolchain you're using. E.g. for conda you could probably do a conda source, for pip you can just `pip install http://urltotarball.gz` or even URL to git repository.