-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
66 lines (59 loc) · 2.06 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
[tool.poetry]
name = "gi-loadouts"
version = "0.1.1"
description = "Loadouts for Genshin Impact"
authors = ["Akashdeep Dhar <[email protected]>", "Avadhoot Dhere <[email protected]>", "Dhruv Bhirud <[email protected]>", "Prithviraj Chavan <[email protected]>", "Shounak Dey <[email protected]>"]
license = "GPL-3.0-or-later"
maintainers = ["Akashdeep Dhar <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/gridhead/gi-loadouts"
repository = "https://github.com/gridhead/gi-loadouts"
documentation = "https://github.com/gridhead/gi-loadouts/blob/main/README.md"
keywords = []
classifiers= [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Framework :: Pydantic :: 2",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"License :: OSI Approved :: SIL Open Font License 1.1 (OFL-1.1)",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Database :: Front-Ends",
"Topic :: Games/Entertainment",
"Topic :: Utilities",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = ">=3.12,<3.14"
pyside6-essentials = "^6.7.2"
pydantic = "^2.8.2"
pyyaml = "^6.0.2"
pillow = "^10.4.0 || ^11.0.0"
pytesseract = "^0.3.13"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "^4.1.0 || ^5.0.0 || ^6.0.0"
pytest-qt = "^4.4.0"
pytest-xvfb = "^3.0.0"
pytest-mock = "^3.14.0"
pytest-xdist = "^3.6.1"
ruff = "^0.2.0 || ^0.3.0 || ^0.6.0 || ^0.7.0"
tox = "^4.0.0"
[tool.ruff]
line-length = 100
fix = true
[tool.ruff.lint]
select = ["E", "F", "W", "I", "S", "B", "UP"]
[tool.ruff.lint.per-file-ignores]
"gi_loadouts/*" = ["E501"]
"test/*" = ["S101", "E501", "S311"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
gi-loadouts = "gi_loadouts.main:main"