-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (32 loc) · 959 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (32 loc) · 959 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
31
32
33
34
35
36
37
38
39
40
41
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "myhondaplus-desktop"
description = "Desktop GUI for Honda Connect Europe (My Honda+)"
requires-python = ">=3.11"
license = "GPL-3.0-or-later"
dynamic = ["version"]
dependencies = [
"pymyhondaplus[keyring]>=5.10.1",
"platformdirs>=4.0",
"PyQt6>=6.6",
]
[project.optional-dependencies]
dev = ["pytest>=9.0,<10", "ruff>=0.16.1,<0.17"]
[project.gui-scripts]
myhondaplus-desktop = "myhondaplus_desktop.app:main"
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["myhondaplus_desktop"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "myhondaplus_desktop.__version__"}
[tool.setuptools.package-data]
myhondaplus_desktop = ["icons/*.svg", "translations/*.json"]