├── .codecov.yml ├── .github ├── dependabot.yml └── workflows │ ├── docs.yaml │ ├── release.yaml │ └── tests.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── docs ├── example_docs │ ├── about │ │ ├── changelog.md │ │ ├── conduct.md │ │ └── license.md │ ├── code │ │ ├── hints.md │ │ ├── source.md │ │ └── tests.md │ ├── github │ │ ├── commits.md │ │ └── workflows.md │ ├── installation │ │ ├── install.md │ │ └── pyproject.md │ ├── intro │ │ ├── resources.md │ │ └── why.md │ ├── media │ │ ├── create_a_repo.png │ │ ├── deploy_docs.png │ │ ├── find_replace.png │ │ └── gitkraken_clone.png │ ├── mkdocs │ │ ├── build.md │ │ └── docs.md │ └── setup │ │ ├── basics.md │ │ ├── name.md │ │ └── prep.md ├── gen_ref_pages.py └── index.md ├── mkdocs.yml ├── pyproject.toml ├── src └── template │ ├── __init__.py │ ├── examples │ ├── __init__.py │ └── sample.py │ └── py.typed └── tests ├── examples └── test_sample.py └── requirements.txt /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | graft src/template 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/README.md -------------------------------------------------------------------------------- /docs/example_docs/about/changelog.md: -------------------------------------------------------------------------------- 1 | --8<-- "CHANGELOG.md" 2 | -------------------------------------------------------------------------------- /docs/example_docs/about/conduct.md: -------------------------------------------------------------------------------- 1 | --8<-- "CODE_OF_CONDUCT.md" 2 | -------------------------------------------------------------------------------- /docs/example_docs/about/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/about/license.md -------------------------------------------------------------------------------- /docs/example_docs/code/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/code/hints.md -------------------------------------------------------------------------------- /docs/example_docs/code/source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/code/source.md -------------------------------------------------------------------------------- /docs/example_docs/code/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/code/tests.md -------------------------------------------------------------------------------- /docs/example_docs/github/commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/github/commits.md -------------------------------------------------------------------------------- /docs/example_docs/github/workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/github/workflows.md -------------------------------------------------------------------------------- /docs/example_docs/installation/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/installation/install.md -------------------------------------------------------------------------------- /docs/example_docs/installation/pyproject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/installation/pyproject.md -------------------------------------------------------------------------------- /docs/example_docs/intro/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/intro/resources.md -------------------------------------------------------------------------------- /docs/example_docs/intro/why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/intro/why.md -------------------------------------------------------------------------------- /docs/example_docs/media/create_a_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/media/create_a_repo.png -------------------------------------------------------------------------------- /docs/example_docs/media/deploy_docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/media/deploy_docs.png -------------------------------------------------------------------------------- /docs/example_docs/media/find_replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/media/find_replace.png -------------------------------------------------------------------------------- /docs/example_docs/media/gitkraken_clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/media/gitkraken_clone.png -------------------------------------------------------------------------------- /docs/example_docs/mkdocs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/mkdocs/build.md -------------------------------------------------------------------------------- /docs/example_docs/mkdocs/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/mkdocs/docs.md -------------------------------------------------------------------------------- /docs/example_docs/setup/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/setup/basics.md -------------------------------------------------------------------------------- /docs/example_docs/setup/name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/setup/name.md -------------------------------------------------------------------------------- /docs/example_docs/setup/prep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/example_docs/setup/prep.md -------------------------------------------------------------------------------- /docs/gen_ref_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/gen_ref_pages.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/src/template/__init__.py -------------------------------------------------------------------------------- /src/template/examples/__init__.py: -------------------------------------------------------------------------------- 1 | """Example functions""" 2 | -------------------------------------------------------------------------------- /src/template/examples/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/src/template/examples/sample.py -------------------------------------------------------------------------------- /src/template/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/examples/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quantum-Accelerators/template/HEAD/tests/examples/test_sample.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==2.2.3 2 | --------------------------------------------------------------------------------