Closed fdiblen closed 2 months ago
Please delete options that are not relevant.
Refs:
Makes the questions more coherent and descriptive.
Instructions to review the pull request
Install the requirements
cd $(mktemp -d --tmpdir py-tmpl-XXXXXX) pip install pipx pipx install copier
Create a new package using the template
copier copy --vcs-ref <YOUR_BRANCH> https://github.com/nlesc/python-template test_package
Create a local git repo to push to GitHub to trigger CI actions
git init git add --all git commit -m "First commit" git remote add origin git@github.com:<YOU>/python-template-test.git git push -u origin main -f
# Create a local environment to test your generated package locally python -m venv env source env/bin/activate python -m pip install --upgrade pip setuptools python -m pip install '.[dev,publishing]'
Checklist before requesting a review
Type of change
Please delete options that are not relevant.
List of related issues or pull requests**
Refs:
483
Describe the changes made in this pull request
Makes the questions more coherent and descriptive.
Instructions to review the pull request
Install the requirements
Create a new package using the template
Create a local git repo to push to GitHub to trigger CI actions