-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (37 loc) · 920 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools"]
[project]
name = "m_teng"
version = "1.1.0"
description = "Interactive utility for voltage measurements with a Keitley 2600 SMU or an Arduino"
requires-python = ">=3.10"
readme = "readme.md"
license = {file = "LICENSE"}
authors = [
{ name = "Matthias Quintern", email = "matthias.quintern@posteo.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",
"pyvisa-py"
]
arduino = [
"bleak >= 0.20"
]
[project.urls]
repository = "https://github.com/MatthiasQuintern/m-teng"
[project.scripts]
m-teng = "m_teng.m_teng_interactive:main"
[tool.setuptools.packages.find]
where = ["."]