-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 1.28 KB
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
45
46
[project]
name = "table-control"
version = "0.11.0"
authors = [
]
description = "Generic 3-axis motion control software."
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"motion-control",
"3-axis",
"instrumentation",
"PySide6",
"VISA",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: System :: Hardware",
]
requires-python = ">=3.14"
dependencies = [
"PySide6~=6.10.2",
"PyVISA~=1.16.1",
"PyVISA-py~=0.8.1",
]
[project.urls]
Homepage = "https://www.oeaw.ac.at/en/mbi/research/detector-development"
Repository = "https://github.com/hephy-dd/table-control"
Documentation = "https://github.com/hephy-dd/table-control"
[project.scripts]
table-control = "table_control.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"