-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (28 loc) · 888 Bytes
/
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
[tool.poetry]
name = "sacd-extract-gui"
version = "0.1.0"
description = "Yet another sacd_extract GUI"
authors = ["Michael John <[email protected]>"]
readme = "README.md"
license = "GPL"
include = ["CHANGELOG.md", "README.md", "sacd_gui.ui", "sacd_gui.png"]
[tool.poetry.scripts]
sacd-extract-gui = 'sacd_extract_gui.__main__:main'
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
pyside6-essentials = "^6.6.0"
[tool.poetry.group.dev.dependencies]
pyside6 = "^6.6.0"
ruff = "^0.3.4"
[tool.ruff.lint]
select = ["E", "F"]
# select = ["ALL"]
# Skip unused imports (`F401`).
ignore = ["F401"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
homepage = "https://github.com/amstelchen/sacd-extract-gui"
repository = "https://github.com/amstelchen/sacd-extract-gui"
documentation = "https://github.com/amstelchen/sacd-extract-gui"