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