-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.qmd
More file actions
23 lines (15 loc) · 912 Bytes
/
README.qmd
File metadata and controls
23 lines (15 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Template for Seedcase Python packages
This repository contains a template for setting up new Python package projects in Seedcase. The first step is to create a new repository using this template. This can easily be done by clicking the "Use this template" button on the repository page or by using the GitHub CLI:
``` bash
# NAME is the name to give the new repository
gh repo create NAME --template seedcase-project/template-python-project
```
## Setting things up after cloning
Search for `NAME` and `REPO` and replace them with the name of your project and the repository name. Then look for any `TODO` items.
## Setting things up
Use the commands found in [`spaid`](https://github.com/seedcase-project/spaid) repo to run the next setup steps.
Need to install these packages after:
``` bash
uv add --dev pre-commit ruff typos pytest bandit commitizen \
genbadge jupyter pytest-cov quartodoc
```