Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added license and other metadata #62

Merged
merged 4 commits into from
Nov 15, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ name = "qml-essentials"
version = "0.1.16"
description = ""
authors = ["Melvin Strobl <[email protected]>", "Maja Franz <[email protected]>"]
maintainers = ["Melvin Strobl <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://cirkiters.github.io/qml-essentials/"
documentation = "https://cirkiters.github.io/qml-essentials/"
repository = "https://github.com/cirKITers/qml-essentials"
keywords = ["quantum", "quantum machine learning", "qml"]

[tool.poetry.dependencies]
python = ">=3.10,<3.12"
Expand Down Expand Up @@ -38,6 +44,6 @@ build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"expensive: Tests that take a long time to run",
"unittest: Tests with an assertion to check the output of a particular uni",
"unittest: Tests with an assertion to check the output of a particular unit",
"smoketest: Tests that just run a method and check if it not fails",
]