-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 1.15 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/SacherECLControl"]
[tool.hatch.build.targets.wheel.force-include]
"./pyproject.toml" = "./SacherECLControl/pyproject.toml"
[project]
name = "PySacherECLControl"
version = "1.2.8"
authors = [
{ name="Christoph Schmidt", email="christoph.schmidt@tugraz.at" },
]
description = "PySacherECLControl is a python project developed to control Sacher TEC lasers. This project offers a convenient interface for users to interact with the laser, adjust parameters, and perform various operations for laser control and management."
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
'PySide6',
'rich',
'pyyaml',
'PyADScopeControl>=1.1.7',
'PySide6WidgetCollection>=1.0.3', # important, otherwise AboutDialog is not available
'mpPy6',
'confPy6>=1.3.1'
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft :: Windows",
]
[project.urls]
"Homepage" = "https://github.com/agentsmith29/PyADScopeControl"