-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
73 lines (63 loc) · 1.76 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
[tool.poetry]
name = "philipstv-gui"
version = "0.0.0" # this will be set during build by poetry-dynamic-versioning
description = "GUI remote for Philips Android-powered TVs."
license = "MIT"
authors = ["Bazyli Cyran <[email protected]>"]
readme = "README.md"
repository = "https://github.com/bcyran/philipstv-gui"
keywords = ["philips", "tv", "remote", "ambilight", "gui"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
packages = [
{ include = "philipstv_gui", from = "src"}
]
include = [
{ path = "src/philipstv_gui/**/*.py" },
]
[tool.poetry.scripts]
philipstv-gui = "philipstv_gui.__main__:main"
[tool.poetry.dependencies]
python = "^3.9"
philipstv = ">=0.4,<3"
appdirs = "^1.4.4"
ttkbootstrap = "^1.7.3"
[tool.poetry.dev-dependencies]
black = "^24.10.0"
isort = "^5.13.2"
flake8 = "^7.1.1"
mypy = "^1.13"
tox = "^4.23.2"
types-appdirs = "^1.4.3"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
pattern = """(?x)
^(?P<base>\\d+(\\.\\d+)*)
(-?((?P<stage>[a-zA-Z]+)\\.?(?P<revision>\\d+)?))?
(\\+(?P<tagged_metadata>.+))?$
"""
[tool.poetry-dynamic-versioning.substitution]
files = ["src/philipstv-gui/__init__.py"]
[tool.mypy]
strict = true
show_error_codes = true
[[tool.mypy.overrides]]
module = "ttkbootstrap.*"
ignore_missing_imports = true
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100