FlaminMad / researchProject

Level Control Research Project Repo
MIT License
0 stars 0 forks source link

Project Structure #3

Closed pet1330 closed 8 years ago

pet1330 commented 9 years ago

This isn't critical, but you might want to think about the structure of your application so that you don't get confused as it grows :smile:

Project ├── cfg │ └── cfg.py (Any configurations you need to use i.e. hardward addresses) ├── script │ ├── StartingScript.py (For you to start the application) │ └── ExampleScript.py (For other people to see what the program can do) ├── src │ ├── dataLoggingTool (independent package) │ ├── minimumVarianceControl (independent package) │ └── minimumVarianceControl (independent package) ├── libs │ └── lib (external libraries which are local to your project) ├── tests │ ├── testFile1.py look up unit testing │ └── testFile2.py ├── docs │ ├── Setup Instructions │ ├── dependances list │ └── feature list ├── README.md ├── .gitignore

FlaminMad commented 8 years ago

I could do with a bit more guidance on this one... Like the starting and example script, what are they used to start as I have 4 programs essentially?

FlaminMad commented 8 years ago

See latest commit for addition of said enhancement