Restructure package

This commit is contained in:
CPD 2025-03-05 14:42:19 +01:00
parent 320f94e14f
commit 16e688d66f

View File

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