cpdctrl/pyproject.toml
2025-03-05 14:42:19 +01:00

43 lines
921 B
TOML

[build-system]
requires = ["setuptools"]
[project]
name = "cpdctrl"
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"
license = {file = "LICENSE"}
authors = [
{ name = "Matthias Quintern", email = "matthias.quintern@tum.de" }
]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dependencies = [
"matplotlib>=3.6",
"pyqt6",
"numpy",
"pandas",
"pyyaml"
]
[project.optional-dependencies]
keithley = [
"pyvisa",
]
[project.urls]
repository = "https://git.quintern.xyz/MatthiasQuintern/cpdctrl"
# Should be launched in an ipython shell instead
# [project.scripts]
# cpdctrl = "cpdctrl.cpdctrl_interactive:main"
[tool.setuptools.packages.find]
where = ["."]