-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf(template): Improving the git workflow for the template (#162)
* Editing `prepare_git` function in `src/scicookie/hooks/post_gen_project.py`. * Editing files in `src/scicookie/{{cookiecutter.project_slug}}/.github/workflows/` * Fix an unnecessary space. * Adding virtualenv workflow * Updating guide.md
- Loading branch information
Showing
8 changed files
with
84 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
37 changes: 37 additions & 0 deletions
37
src/scicookie/{{cookiecutter.project_slug}}/virtualenvs/pyenv/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
python < 3.11 | ||
{%- if cookiecutter.build_system == "poetry" %} | ||
poetry | ||
{%- elif cookiecutter.build_system == "flit" %} | ||
flit | ||
{%- elif cookiecutter.build_system == "mesonpy" %} | ||
meson-python | ||
{%- elif cookiecutter.build_system == "setuptools" %} | ||
setuptools | ||
build | ||
{%- elif cookiecutter.build_system == "pdm" %} | ||
pdm | ||
{%- elif cookiecutter.build_system == "hatch" %} | ||
hatch | ||
{%- elif cookiecutter.build_system == "maturin" %} | ||
maturin | ||
rust | ||
{%- elif cookiecutter.build_system == "scikit-build-core" %} | ||
scikit-build-core | ||
cmake | ||
{%- elif cookiecutter.build_system == "pybind11" %} | ||
pybind11 | ||
cmake | ||
{%- endif %} | ||
nodejs # used by semantic-release | ||
{%- if cookiecutter.use_shellcheck == "yes" %} | ||
shellcheck | ||
{%- endif %} | ||
{%- if cookiecutter.documentation_engine == "sphinx" %} | ||
pandoc | ||
{%- endif %} | ||
{%- if cookiecutter.use_mypy == "yes" %} | ||
mypy | ||
{%- endif %} | ||
{%- if cookiecutter.use_make == "yes" %} | ||
make | ||
{%- endif %} |