-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (24 loc) · 726 Bytes
/
pyproject.toml
File metadata and controls
30 lines (24 loc) · 726 Bytes
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
[tool.poetry]
name = "RidenGUI"
version = "1.1.0"
description = "Qt 5/6 based GUI for Riden RDXX power supplies written in Python"
authors = ["Shayne Hartford <shaybox@shaybox.com>"]
[tool.poetry.dependencies]
click = "^8.0.3"
PyQt5 = { version = "^5.15.6", optional = true }
PyQt6 = { version = "^6.2.3", optional = true }
python = ">=3.7,<3.11"
QtPy = "^2.0.1"
riden = { git = "https://github.com/shaybox/riden.git" }
[tool.poetry.dev-dependencies]
black = "^22.1.0"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
"PyQt5" = ["PyQt5"]
"PyQt6" = ["PyQt6"]
[tool.poetry.scripts]
ridengui = "ridengui.main:main"
[tool.black]
line-length = 240