| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
All design principles are explained in the developing.md file. The Python package template was created by Jakob Nybo Nissen and Henry Webel.
Can be used as GitHub template repository, see GitHub documentation.
You will need to find and replace occurences of
python_package -> your_package_name
RasmussenLab -> GitHub_user_name (or organization) with the name of your package and GitHub user name (or organization).
look for First Last to see where to replace with your name
choose a license, see GitHub documentation and Creative Commons. Replace LICENSE file with the license you choose.
Install package so that new code is picked up in a restared python interpreter:
pip install -e ".[dev]"
works using this template
from python_package import hello_world
print (python_package.__version__)
print(hello_world(4))The documentation can be build using readthedocs automatically. See project on Readthedocs for the project based on this template. A new project needs to be registered on ReadTheDocs.
| Back | FazBrowse Home | New Git URL |