cpdctrl/pyproject.toml
2025-03-17 08:40:16 +01:00

44 lines
974 B
TOML

[build-system]
requires = ["setuptools"]
[project]
name = "cpdctrl"
version = "1.0.1"
description = "Utility for CPD measurements while controlling a 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]
instruments = [
"pyvisa", # needed for Keithley and DC2200
"pyserial" # needed for Arduino
]
[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 = ["."]