Once your Python package is created, put it under version control using git and GitHub.
cd {{ cookiecutter.directory_name }}
git init
git add --all
git commit -m "first commit"
git branch -M main
git remote add origin {{ cookiecutter.repository }}Go to
https://github.com/organizations/{{cookiecutter.github_organization}}/repositories/new
and create a new repository named {{ cookiecutter.directory_name }} as an empty repository, then push your commits to GitHub:
git push --set-upstream origin mainA short while after you push your commits to GitHub for the first time, a few issues outlining next steps will added automatically (here). Resolve them to complete the setup of your repository.
The README.dev.md contains developer documentation.
For an explanation of what files are there, and what each of these do, please refer to project_setup.md.