-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.qmd
More file actions
84 lines (74 loc) · 3.77 KB
/
index.qmd
File metadata and controls
84 lines (74 loc) · 3.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
title: An opinionated template for Python Packages
---
{{< include /docs/includes/_badges.qmd >}}
This is a template for creating a new Python package following the
Seedcase structure. Use this template to quickly get started with a new
Python package with all the necessary files and configurations in place,
including for developing the package.
## Features
- Use [uv](https://decisions.seedcase-project.org/why-uv/) to manage the
Python package and for project management.
- Includes a [justfile](https://just.systems/man/en/) for managing
common tasks like building the website and running checks.
- Uses [typos](https://github.com/crate-ci/typos) to check for common
spelling mistakes.
- Code formatting and linting with
[ruff](https://decisions.seedcase-project.org/why-ruff/).
- Run checks with [pre-commit](https://pre-commit.com/) hooks to ensure
consistent formatting and style across the project. It includes checks
for credentials, typos, and file formatting.
- GitHub workflows for automatically adding Pull Requests and Issues to
a project board.
- Pull Request template for easy creation of new Pull Requests.
- Includes [GitHub Actions](https://docs.github.com/en/actions) for
continuous integration, testing, and delivery for running checks,
formatting, releasing, and building the Python package and associated
documentation.
- Pull Request template for easy creation of new Pull Requests.
- [VS Code](https://code.visualstudio.com/) settings commonly used by
contributors working in VS Code.
- Includes an [EditorConfig](https://editorconfig.org/) file to ensure
consistent formatting across different editors.
- [`CITATION.cff`](https://citation-file-format.github.io/) file for
citation information.
- Python package folder and file structure that takes advantage of
Python's packaging ecosystem.
- [`pyproject.toml`](https://peps.python.org/pep-0518/) for tracking
dependencies and project metadata.
- Uses [Quarto](https://quarto.org/) Markdown for the website content,
allowing for easy integration of code, text, and figures.
- Uses
[Commitizen](https://decisions.seedcase-project.org/why-changelog-with-commitizen/)
to
[check](https://decisions.seedcase-project.org/why-lint-with-commitizen/)
commit messages and automatically create the changelog.
- Automated Git tagging and GitHub releases with
[commitizen](https://decisions.seedcase-project.org/why-semantic-release-with-commitizen/)
that are based on messages following
[Conventional Commits](https://decisions.seedcase-project.org/why-conventional-commits/).
- Uses a [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
license for the website content.
- Uses an [MIT](https://decisions.seedcase-project.org/why-mit-license/)
license for the code.
- Optionally uses the
[`seedcase-theme`](https://github.com/seedcase-project/seedcase-theme)
Quarto extension for a standard appearance across websites.
- Uses [Netlify](https://www.netlify.com/) for hosting the website.
- Includes a [GoatCounter](https://www.goatcounter.com/) file for
website visitor tracking, which is privacy-friendly and does not use
cookies. That means it doesn't need a GDPR notice as no personal data
is collected.
- Uses [rumdl](https://rumdl.dev/) to format Markdown files so that they
are standardized and consistent across the project, as well as being
easier to read in raw form.
- Checks URLs with [Lychee](https://lychee.cli.rs) to ensure they aren't
broken or blocked.
## Want to contribute?
We would love your feedback or contributions! Head over to our
[GitHub repository]({{< meta links.github >}}) to share your ideas or
contribute code. Your input makes us better!
### Contributors
{{< include /docs/includes/_contributors.qmd >}}
## Licensing
This project is licensed under the [MIT License](/LICENSE.md).