As a developer installing vivarium_models in another project, I want to have access to everything in the "templates/" directory, even files within a subdirectory.
Acceptance Criteria
All template files are included in package_data.
Details
package_data only includes files at the given path(s), not contents of subdirectories, e.g. "/templates/medyan..."
Including every example model path in the package_data is not very scalable, so probably best to keep everything in "templates/" in a flat structure. But we need to figure out how to do this without writing over files for different models.
Use Case
As a developer installing
vivarium_models
in another project, I want to have access to everything in the "templates/" directory, even files within a subdirectory.Acceptance Criteria
All template files are included in package_data.
Details
package_data
only includes files at the given path(s), not contents of subdirectories, e.g. "/templates/medyan..."Including every example model path in the
package_data
is not very scalable, so probably best to keep everything in "templates/" in a flat structure. But we need to figure out how to do this without writing over files for different models.