-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (66 loc) · 1.91 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[project]
name = "laserstudio"
dynamic = ["version"]
description = "Python3 software for hardware evaluation"
authors = [
{ name = "Olivier Hériveaux", email = "[email protected]" },
{ name = "Michaël Mouchous", email = "[email protected]" },
]
license = "LGPL-3.0-or-later"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Security",
"Topic :: System :: Hardware",
]
dependencies=[
"pyqt6",
"pystages>=1.2",
"pillow>=10.4.0",
"opencv-python>=4.9.0.80",
"pyyaml",
"shapely",
"triangle",
"requests>=2.32.3,<3.0.0",
"numpy<2.0",
"pypdm",
"flask",
"flask-restx",
"hidapi>=0.14.0",
"colorama",
"donjon_hyshlr"
]
requires-python = ">=3.9,<3.13"
[tool.poetry]
version = "0.0.0"
[project.urls]
Documentation = "https://laserstudio.readthedocs.io/"
[project.scripts]
laserstudio = 'laserstudio.__main__:main'
laserstudio_listdevices = 'laserstudio.instruments.list_serials:list_devices'
laserstudio_generate_config_cli = 'laserstudio.config_generator:main_cli'
laserstudio_generate_config = 'laserstudio.config_generator:main_gui'
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "*"
sphinx-rtd-theme = "*"
myst_parser = "*"
# sphinx-togglebutton = "*"
# sphinx-book-theme = "*"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[tool.poetry-dynamic-versioning.substitution]
files = ["laserstudio/__init__.py"]
[tool.poetry-dynamic-versioning.files."laserstudio/__init__.py"]
persistent-substitution = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"