This repository contains templates for seml.
This repository has the following structure
.
├── LICENSE
├── README.md
└── templates
├── default
└── ...
where each subdirectory of templates represents a separate template.
Templates may be represented by an arbitrary file structure. To allow for custom paths and names, python string formatting is performed on file paths, e.g., src/{project_name} will be translated to src/my_first_project. To perform formatting within files, simply store them as .template files.
This pyproject.toml.template
[project]
name = "{project_name}"
version = "0.0.1"will be translated to the following pyproject.toml:
[project]
name = "my_first_project"
version = "0.0.1"when initializing a new project with
seml project init -t default my_first_projectTo use these templates, install seml via
pip install semlNavigate into an empty directory
mkdir my_project
cd my_projectAnd create the project via
seml project init -t default .where -t allows you to specify the template and . specifies the directory where the project should be initialized.
You may want to initialize a template from a different origin, in this case you can supply the exact git remote via -r, git commit/branch/tag via -c
seml project init -t my_template -o my_remote.git -c commit_hash .