Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JuliaBesties/BestieTemplate.jl
Template for Julia Programming Language packages using the copier engine.
https://github.com/JuliaBesties/BestieTemplate.jl
best-practices code-quality copier copier-template julia julia-best-practices julia-language julia-template template
Last synced: 10 days ago
JSON representation
Template for Julia Programming Language packages using the copier engine.
- Host: GitHub
- URL: https://github.com/JuliaBesties/BestieTemplate.jl
- Owner: JuliaBesties
- License: mpl-2.0
- Created: 2023-09-09T22:45:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-17T14:06:00.000Z (17 days ago)
- Last Synced: 2025-01-19T20:39:36.728Z (14 days ago)
- Topics: best-practices, code-quality, copier, copier-template, julia, julia-best-practices, julia-language, julia-template, template
- Language: Julia
- Homepage: http://JuliaBesties.github.io/BestieTemplate.jl/
- Size: 3.82 MB
- Stars: 61
- Watchers: 3
- Forks: 11
- Open Issues: 74
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Citation: CITATION.cff
Awesome Lists containing this project
README
# BestieTemplate.jl
Your best practices friend.
[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaBesties.github.io/BestieTemplate.jl/stable)
[![In development documentation](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaBesties.github.io/BestieTemplate.jl/dev)
[![Build Status](https://github.com/JuliaBesties/BestieTemplate.jl/workflows/Test/badge.svg)](https://github.com/JuliaBesties/BestieTemplate.jl/actions)
[![Test workflow status](https://github.com/JuliaBesties/BestieTemplate.jl/actions/workflows/Test.yml/badge.svg?branch=main)](https://github.com/JuliaBesties/BestieTemplate.jl/actions/workflows/Test.yml?query=branch%3Amain)
[![Lint workflow Status](https://github.com/JuliaBesties/BestieTemplate.jl/actions/workflows/Lint.yml/badge.svg?branch=main)](https://github.com/JuliaBesties/BestieTemplate.jl/actions/workflows/Lint.yml?query=branch%3Amain)
[![Docs workflow Status](https://github.com/JuliaBesties/BestieTemplate.jl/actions/workflows/Docs.yml/badge.svg?branch=main)](https://github.com/JuliaBesties/BestieTemplate.jl/actions/workflows/Docs.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/JuliaBesties/BestieTemplate.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaBesties/BestieTemplate.jl)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8350577.svg)](https://doi.org/10.5281/zenodo.8350577)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](CODE_OF_CONDUCT.md)
[![All Contributors](https://img.shields.io/github/all-contributors/JuliaBesties/BestieTemplate.jl?labelColor=5e1ec7&color=c0ffee&style=flat-square)](#contributors)
[![Copier](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/copier-org/copier/master/img/badge/badge-black.json)](https://github.com/copier-org/copier)
[![BestieTemplate](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/JuliaBesties/BestieTemplate.jl/main/docs/src/assets/badge.json)](https://github.com/JuliaBesties/BestieTemplate.jl)## What does `BestieTemplate` do?
Creating `Julia` packages involve the creation and edition of many tiny files.
Wouldn't it be great to automate this?This is exactly what `BestieTemplate` does.
### FAQ
- How is `BestieTemplate` different from `PkgTemplates`?
- it can be applied to existing packages
- it invites to follow some (opinionated) best practices
- it can be reapplied to acquire updates made to the template
- it is automatically reapplied through Pull Requests made by the `Copier.yml` workflow (Work in progress)### Architecture
Under the hood, `BestieTemplate` is no more and no less than:
- a [copier](https://copier.readthedocs.io) template/skeleton for Julia packages (see folder [template](template)); and
- a package that wraps `copier` in Julia using `PythonCall` with some convenience functions.## Quickstart
Install `BestieTemplate` in your chosen environment (we recommend globally) by entering `pkg` mode by pressing `]` and then:
```julia-repl
julia> # press ]
pkg> add BestieTemplate
```then:
```julia-repl
julia> using BestieTemplate
julia> BestieTemplate.generate("path/to/YourNewPackage.jl")
julia> # or BestieTemplate.apply("path/to/YourExistingPackage.jl")
```please note that `"YourPackage.jl"` can either be a fresh new package or an existing one.
[![asciicast](docs/src/assets/demo.gif)](https://asciinema.org/a/611189)
If you like what you see, check the [full usage guide](https://JuliaBesties.github.io/BestieTemplate.jl/stable/10-full-guide/).
## Users and Examples
The following are users and examples of repos using this template, or other templates based on it.
Feel free to create a pull request to add your repo.- This package itself uses the template.
- [TulipaIO.jl](https://github.com/TulipaEnergy/TulipaIO.jl)## Contributing
If you would like to get involved in the BestieTemplate growth, please check our [contributing guide](docs/src/90-contributing.md). We welcome contributions of many types, including coding, reviewing, creating issues, creating tutorials, interacting with users, etc. Make sure to follow our [code of conduct](CODE_OF_CONDUCT.md).
If your interest is in developing the package, check the [development guide](docs/src/91-developer.md) as well.
## References
Here is a list of links/repos that include content that we have used for inspiration, or used directly.
This is most likely not a complete list, since many of the things included here were based on existing packages and knowledge that we brought from other projects.
This also doesn't explain where each file came from or why they are here. You can find some of that information in the [Explanation](https://JuliaBesties.github.io/BestieTemplate.jl/stable/20-explanation/) section of the docs.- [PkgTemplates.jl](https://github.com/JuliaCI/PkgTemplates.jl), naturally. We used it for many years, and in particular for the initial TulipaEnergyModel.jl commit (see below).
- [Netherlands eScience Center's python template](https://github.com/NLeSC/python-template) includes many of the best practices that we apply here. We used many of the ideas there in a Julia context, and took many non-Julia specific ideas from there.
- [TulipaEnergyModel.jl](https://github.com/TulipaEnergy/TulipaEnergyModel.jl) was the project that motivated this version of a template. From the start we decide to implement many best practices and so we started from a PkgTemplates.jl template and started adding parts of the python template that made sense.
- The [Julia Smooth Optimizers](https://jso.dev) package ecosystem was one of the main motivations to look for a solution that could be applied and reapplied to existing packages, in particular to help maintainers.### Contributors
Abel Soares Siqueira
π» π π π§
Tangi Migot
π» π π
Pablo RodrΓguez-SΓ‘nchez
π π€
Olga Lyashevska
π» π π€
Luisa Orozco
π» π π€
Netherlands eScience Center
π΅
Suvayu Ali
π π π»
Stefan Verhoeven
π» π€
Dominique
π€ π»
fdiblen
π» π
Greg Neustroev
π»
Luca Ferranti
π€
Guillaume Dalle
π€
Johannes Hidding
π π
Frames White
π» π π€
Lauren Clisby
π€ π»
Diego Alejandro Tejada Arango
π€
LeoXia
π»