m-teng/pyproject.toml

44 lines
906 B
TOML
Raw Permalink Normal View History

2023-06-18 17:38:10 +02:00
[build-system]
requires = ["setuptools"]
[project]
2023-06-26 22:03:15 +02:00
name = "m_teng"
version = "1.1.0"
description = "Interactive utility for voltage measurements with a Keitley 2600 SMU or an Arduino"
2023-06-18 17:38:10 +02:00
requires-python = ">=3.10"
readme = "readme.md"
license = {file = "LICENSE"}
authors = [
2023-06-26 22:03:15 +02:00
{ name = "Matthias Quintern", email = "matthias.quintern@posteo.de" }
2023-06-18 17:38:10 +02:00
]
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",
2023-06-26 22:03:15 +02:00
]
[project.optional-dependencies]
keithley = [
2023-06-18 17:38:10 +02:00
"pyvisa",
"pyvisa-py"
]
2023-06-26 22:03:15 +02:00
arduino = [
"bleak >= 0.20"
]
2023-06-18 17:38:10 +02:00
[project.urls]
2023-06-26 22:03:15 +02:00
repository = "https://github.com/MatthiasQuintern/m-teng"
2023-06-18 17:38:10 +02:00
2023-06-26 22:08:10 +02:00
[project.scripts]
m-teng = "m_teng.m_teng_interactive:main"
2023-06-18 17:38:10 +02:00
[tool.setuptools.packages.find]
where = ["."]