This is an automated email from the ASF dual-hosted git repository. rawkintrevo pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/mahout.git
commit 82458204486f04d8d69e83745740ffc2fdf56c12 Author: trevor grant <[email protected]> AuthorDate: Thu Jan 18 15:08:34 2024 -0600 Closes #1 --- pyproject.toml | 17 +++++++++++++++++ {src/qumat => qumat}/__init__.py | 0 {src/qumat => qumat}/qumat.py | 0 3 files changed, 17 insertions(+) diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 000000000..0f0750f43 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[tool.poetry] +name = "qumat" +version = "0.0.1" +description = "A library for composing quantum machine learning." +authors = ["rawkintrevo"] +license = "MIT" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.7" +qiskit = "^0.45.1" +qiskit-aer = "^0.13.2" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/src/qumat/__init__.py b/qumat/__init__.py similarity index 100% rename from src/qumat/__init__.py rename to qumat/__init__.py diff --git a/src/qumat/qumat.py b/qumat/qumat.py similarity index 100% rename from src/qumat/qumat.py rename to qumat/qumat.py
