35 lines
867 B
TOML
35 lines
867 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
|
|
[project]
|
|
name = "cpdctrl-gui"
|
|
version = "0.1.0"
|
|
description = "GUI Utility for CPD measurements with a Keitley 2700 SMU and an Arduino-controlled light source"
|
|
requires-python = ">=3.10"
|
|
readme = "README.md"
|
|
license = {file = "LICENSE"}
|
|
authors = [
|
|
{ name = "Matthias Quintern", email = "matthias.quintern@tum.de" }
|
|
]
|
|
classifiers = [
|
|
"Operating System :: Microsoft :: Windows :: Windows 10",
|
|
"Environment :: X11 Applications :: Qt",
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
]
|
|
dependencies = [
|
|
"pyqt6",
|
|
"pyqtgraph",
|
|
"numpy",
|
|
"cpdctrl"
|
|
]
|
|
|
|
[project.urls]
|
|
repository = "https://git.quintern.xyz/MatthiasQuintern/cpdctrl-gui"
|
|
|
|
[project.scripts]
|
|
cpdctrl-gui = "cpdctrl_gui.main:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|