Compare commits

..

No commits in common. "982be66eb3b35dc53b5393ac6d2ef8be013c3b2a" and "37d9825b5e4dc12143f645245396ae7707b2b62e" have entirely different histories.

View File

@ -2,14 +2,14 @@
requires = ["setuptools"]
[project]
name = "m_teng"
version = "1.1.0"
description = "Interactive utility for voltage measurements with a Keitley 2600 SMU or an Arduino"
name = "k_teng"
version = "1.0.0"
description = "Interactive utility for I-V measurements with a Keitley 2600 SMU"
requires-python = ">=3.10"
readme = "readme.md"
license = {file = "LICENSE"}
authors = [
{ name = "Matthias Quintern", email = "matthias.quintern@posteo.de" }
{ name = "Matthias Quintern", email = "matthias@quintern.xyz" }
]
classifiers = [
"Operating System :: POSIX :: Linux",
@ -20,24 +20,16 @@ classifiers = [
dependencies = [
"matplotlib>=3.6",
"numpy",
]
[project.optional-dependencies]
keithley = [
"pyvisa",
"pyvisa-py"
]
arduino = [
"bleak >= 0.20"
]
[project.urls]
repository = "https://github.com/MatthiasQuintern/m-teng"
repository = "https://git.quintern.xyz/MatthiasQuintern/k-teng"
[project.scripts]
m-teng = "m_teng.m_teng_interactive:main"
[tool.setuptools.packages.find]
where = ["."]
[project.scripts]
k-teng = "k_teng.k_teng_interactive:main"