cpdctrl/pyproject.toml

42 lines
853 B
TOML
Raw Normal View History

2025-01-17 12:17:42 +01:00
[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",
"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 = ["."]