-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (65 loc) · 1.87 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
[tool.poetry]
name = "laserstudio"
version = "0.0.0"
description = "Python3 software for hardware evaluation"
authors = [
"Olivier Hériveaux <[email protected]>",
"Michaël Mouchous <[email protected]>",
]
license = "LGPL-3.0-or-later"
readme = "README.md"
documentation = "https://laserstudio.readthedocs.org/"
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Security",
"Topic :: System :: Hardware",
]
[tool.poetry.scripts]
laserstudio = 'laserstudio.__main__:main'
laserstudio_listdevices = 'laserstudio.instruments.list_serials:list_devices'
[tool.poetry.dependencies]
python = ">=3.9 <3.13"
pyqt6 = ">=6.0"
pystages = "1.2"
pillow = "10.4.0"
opencv-python = "4.9.0.80"
pyusb = "1.2.1"
pyyaml = "6.0.1"
shapely = "^2.0.5"
triangle = "20230923"
requests = ">=2.32.3,<3.0.0"
numpy = "1.26.4"
pypdm = "1.1"
flask = "3.0.3"
flask-restx = "1.3.0"
hidapi = "^0.14.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
[tool.poetry.group.nit]
optional = true
[tool.poetry.group.nit.dependencies]
pynit = { git = "https://github.com/Ledger-Donjon/pynit.git" }
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "*"
sphinx-rtd-theme = "*"
myst_parser = "*"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[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"