43 lines
863 B
TOML
43 lines
863 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
|
|
[project]
|
|
name = "cpdctrl"
|
|
version = "1.1.0"
|
|
description = "Utility for voltage measurements with a Keitley 2700 SMU"
|
|
requires-python = ">=3.10"
|
|
readme = "readme.md"
|
|
license = {file = "LICENSE"}
|
|
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)",
|
|
]
|
|
dependencies = [
|
|
"matplotlib>=3.6",
|
|
"pyqt6",
|
|
"numpy",
|
|
"pandas",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
keithley = [
|
|
"pyvisa",
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
repository = "https://git.quintern.xyz/MatthiasQuintern/cpdctrl"
|
|
|
|
|
|
[project.scripts]
|
|
cpdctrl = "cpdctrl.cpdctrl_interactive:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|