Skip to content

The purpose of this repository is to concentrate various quantum machine learning algorithms into one place.

License

Notifications You must be signed in to change notification settings

ksk0629/quantum_machine_learning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

INTRODUCTION

This is an exmple project for packaging my own python project.

PRELIMINARIES

  • Install build if you need to build the project: pip install build.

HOW TO INSTALL

FOR USERS

Run the following command to install the package.

poetry install --only-root

FOR DISTRUBUTERS

Run the following command to build the package.

poetry build

Then dist directory will be created under the root in which the package is installed by the following command.

poetry add dist/template_py_package-0.1.0-py3-none-any.whl

The filename depends on the settings written in the pyproject.toml.

FOR DEVELOPERS

Run the following command to install the package and the dependencies.

poetry install

HOW TO RUN TESTS

Run the following command.

poetry run pytest.

The following command would be preferred if you need the coverage-report.

poetry run pytest --cov=. --cov-report term-missing

for seeing the report on your console, or

poetry run pytest --cov=. --cov-report=html

for outputting html files.

REFERENCE

About

The purpose of this repository is to concentrate various quantum machine learning algorithms into one place.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published