-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (65 loc) · 1.67 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
[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ReShadeUtils"
version = "5.0.2"
description = "ReShadeUtils"
license = "MIT"
readme = "README.md"
authors = ["Daniel Costa <[email protected]>"]
maintainers = ["Daniel Costa"]
repository = "https://github.com/ddc/ReshadeUtils"
homepage = "https://github.com/ddc/ReshadeUtils"
package-mode = false
keywords = [
"python3", "python-3", "python",
"pyqt", "qt6", "pyqt6", "reshade",
]
classifiers = [
"Topic :: Games/Entertainment",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Environment :: Other Environment",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
]
[tool.poetry.group.test]
optional = true
[tool.poetry.group.dev]
optional = true
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
bs4 = "^0.0.2"
urllib3 = "^2.2.3"
SQLAlchemy = "^2.0.36"
requests = "^2.32.3"
PyQt6 = "^6.8.0"
alembic = "^1.14.0"
ddcDatabases = "^1.0.17"
ddcLogs = "^3.0.9"
ddcUtils = "^1.0.38"
fsspec = "^2024.10.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.4"
faker = "^33.1.0"
coverage = "^7.6.9"
pytest-qt = "^4.4.0"
poethepoet = "^0.31.1"
[tool.poetry.group.dev.dependencies]
pyinstaller = "^6.11.1"
[tool.coverage.run]
omit = [
"tests/*",
"src/events/*",
"src/tools/qt/*",
"src/edit_form.py",
]
[tool.poe.tasks]
_test = "coverage run -m pytest -v"
_coverage_report = "coverage report"
_coverage_xml = "coverage xml"
tests = ["_test", "_coverage_report", "_coverage_xml"]
test = ["tests"]