Skip to content

Commit

Permalink
improve pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
JooNiv committed Jan 14, 2025
1 parent cbf8344 commit 0f99488
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,36 @@ dynamic = [ "version" ]
authors = [
{ name = "Joonas Nivala", email = "joonas.nivala@gmail.com" },
]

description = "A package for performing wire cuts of hardware without reset-gates or mid-circuit measurements. Built on top of qiskit"
readme = "README.md"
requires-python = ">=3.9, < 3.12"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License"
]

requires-python = ">=3.9, < 3.12"

dependencies = [
"qiskit >= 0.45.3, < 1.2",
"numpy",
"qiskit-aer >= 0.13.0, < 0.15",
"qiskit-experiments == 0.7.0",
]

[project.urls]
homepage = "https://github.com/JooNiv/QCut"
documentation = "https://jooniv.github.io/QCut/"
repository = "https://github.com/JooNiv/QCut.git"
changelog = "https://github.com/JooNiv/QCut/blob/main/CHANGELOG.rst"

[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "ruff"]


[project.urls]
"Homepage" = "https://github.com/JooNiv/QCut"

[tool.setuptools.packages.find]
where = ["."]
exclude=["tests", "tests.*"]
Expand Down

0 comments on commit 0f99488

Please sign in to comment.