Skip to content

Commit

Permalink
Correct toml formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Mills committed Mar 18, 2024
1 parent 0c40f63 commit 6f7867a
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,31 @@
[build-system]
requires = ["poetry", "poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "qermit"
version = "0.5.0"
description = "Python package for quantum error mitigation"
authors = ["Your Name <[email protected]>"]
description = "Python package for quantum error mitigation."
authors = [
"Daniel Mills <[email protected]>",
"Silas Dilkes <[email protected]>",
"Cristina Cirsoiu <[email protected]>",
]
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.10, <3.13"
pytket-qiskit = "^0.50.0"
matplotlib = "^3.8.3"

pytest = {version="^8.1.1", optional=True}
mypy = {version="^1.9.0", optional=True}
flake8 = {version="^7.0.0", optional=True}
sphinx = {version="^7.2.6", optional=True}
pytest-cov = {version="^4.1.0", optional=True}
sphinx-book-theme = {version="^1.1.2", optional=True}
qiskit-ibm-provider = {version="^0.10.0", optional=True}
pytket-quantinuum = {version="^0.30.0", optional=True}
pytest = { version = "^8.1.1", optional = True }
mypy = { version = "^1.9.0", optional = True }
flake8 = { version = "^7.0.0", optional = True }
sphinx = { version = "^7.2.6", optional = True }
pytest-cov = { version = "^4.1.0", optional = True }
sphinx-book-theme = { version = "^1.1.2", optional = True }
qiskit-ibm-provider = { version = "^0.10.0", optional = True }
pytket-quantinuum = { version = "^0.30.0", optional = True }

[tool.poetry.extras]
tests = ["pytest", "pytest-cov", "mypy", "flake8"]
Expand Down

0 comments on commit 6f7867a

Please sign in to comment.