From 5c29c5b5eec9af28d088d02076b479c733d9e1b1 Mon Sep 17 00:00:00 2001 From: fmowl10 Date: Sat, 30 Sep 2023 23:09:14 +0900 Subject: [PATCH] Fix pyproject.toml dependencies --- pyproject.toml | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5ec6035..2950d08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ exclude = ['qiskit_class*tests'] [project] name = "qiskit-classroom" -version = "0.2.0" +version = "0.2.1" authors = [{ name = "KMU-quantum-classroom" }] description = "the Qiskit classroom GUI applications." readme = "README.md" @@ -22,23 +22,11 @@ classifiers = [ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", ] -dependencies = [ - "qiskit==0.44.1", - "PySide6==6.5.1.1", - "qasync==0.24.0", - "qiskit-classroom-converter==0.2.0", - "matplotlib==3.7.2", - "pylatexenc==2.10", -] +dynamic = ["dependencies"] -[project.optional-dependencies] -dev = [ - "coverage==7.3.0", - "pylint==2.17.5", - "tox==4.10.0", - "build==0.10.0", - "pdoc==14.0.0", -] +[tool.setuptools.dynamic] +dependencies = { file = ["requirements.txt"] } +optional-dependencies = { dev = { file = ["requirements-dev.txt"] } } [project.urls] "Homepage" = "https://github.com/KMU-quantum-classroom/qiskit-classroom"