diff --git a/pyproject.toml b/pyproject.toml index fc96f67..5159824 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools"] [project] name = "cpdctrl" -version = "1.1.0" +version = "1.0.0" description = "Utility for CPD measurements with a Keitley 2700 SMU and an Arduino-controlled light source" requires-python = ">=3.10" readme = "README.md" @@ -12,7 +12,6 @@ authors = [ { name = "Matthias Quintern", email = "matthias.quintern@tum.de" } ] classifiers = [ - "Operating System :: POSIX :: Linux", "Environment :: Console", "Programming Language :: Python :: 3", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", @@ -22,6 +21,7 @@ dependencies = [ "pyqt6", "numpy", "pandas", + "pyyaml" ] [project.optional-dependencies] @@ -30,13 +30,13 @@ keithley = [ ] - [project.urls] repository = "https://git.quintern.xyz/MatthiasQuintern/cpdctrl" -[project.scripts] -cpdctrl = "cpdctrl.cpdctrl_interactive:main" +# Should be launched in an ipython shell instead +# [project.scripts] +# cpdctrl = "cpdctrl.cpdctrl_interactive:main" [tool.setuptools.packages.find] where = ["."]