-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.24 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
[tool.poetry]
name = "pyqt6rc"
version = "0.7.0"
description = "PyQt6 UI templates resource converter"
authors = ["Martin Domaracký <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/domarm-comat/pyqt6rc"
repository = "https://github.com/domarm-comat/pyqt6rc"
keywords = ["pyqt6", "converter", "resources", "resource-management"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Intended Audience :: Developers",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
importlib-resources = "^5.12.0"
pyqt6 = "^6.5.0"
pyside6 = "^6.8.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
coverage = "^7.2.7"
mypy = "^1.3.0"
black = "^23.11.0"
pre-commit = "^3.5.0"
[tool.poetry.scripts]
pyqt6rc = "pyqt6rc.scripts.pyqt6rc:run"
pyqt6sp = "pyqt6rc.scripts.pyqt6sp:run"
pyside6rc = "pyqt6rc.scripts.pyside6rc:run"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"pyqt6rc/test",
]
[tool.mypy]
exclude = ["test_resources/"]