e-florez / amcess

GNU General Public License v3.0
0 stars 0 forks source link

amcess project structure #10

Open e-florez opened 3 months ago

e-florez commented 3 months ago

Consider updating AMCESS project structure to avoid modifying the system path for imports

my_project/ │ ├── my_project/ │ ├── init.py │ ├── module1.py │ ├── module2.py │ ├── sub_package/ │ │ ├── init.py │ │ ├── module3.py │ │ ├── module4.py │ ├── tests/ │ ├── init.py │ ├── test_module1.py │ ├── test_module2.py │ ├── workflow/ │ ├── notebook_01.ipynb │ ├── notebook_02.ipynb | ├── docs/ │ ├── setup.py ├── README.md └── .gitignore