-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (89 loc) · 2.43 KB
/
Copy pathpyproject.toml
File metadata and controls
103 lines (89 loc) · 2.43 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[tool.poetry]
name = "simkl-mps"
version = "2.4.1"
description = "Automatic Media Scrobbler for Simkl"
authors = [
"kavin <kavinthangavel.dev@gmail.com>",
]
license = "GPL-3.0"
readme = "README.md"
keywords = [
"simkl",
"scrobbler",
]
homepage = "https://github.com/ByteTrix/Media-Player-Scrobbler-for-Simkl"
repository = "https://github.com/ByteTrix/Media-Player-Scrobbler-for-Simkl"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
]
packages = [
{ include = "simkl_mps" },
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
requests = ">=2.25.0"
guessit = ">=3.8.0"
python-dotenv = ">=0.15.0"
psutil = ">=5.8.0"
colorama = ">=0.4.4"
pystray = ">=0.19.0"
pillow = ">=12.1.1"
plyer = ">=2.0.0"
[tool.poetry.dependencies.winotify]
version = "^1.1.0"
markers = "sys_platform == 'win32'"
[tool.poetry.dependencies.pygetwindow]
version = ">=0.0.9"
markers = "sys_platform == 'win32'"
[tool.poetry.dependencies.pywin32]
version = ">=300"
markers = "sys_platform == 'win32'"
[tool.poetry.dependencies.python-xlib]
version = ">=0.31"
optional = true
markers = "sys_platform == 'linux'"
[tool.poetry.dependencies.pyobjc]
version = ">=7.3"
optional = true
markers = "sys_platform == 'darwin'"
[tool.poetry.dependencies.PyGObject]
version = ">=3.42.0"
optional = true
markers = "sys_platform == 'linux' and python_version >= '3.9' and python_version < '4.0'"
[tool.poetry.urls]
"Linux System Dependencies" = "https://github.com/ByteTrix/Media-Player-Scrobbler-for-Simkl/wiki/Installation#linux-installation"
"Bug Reports" = "https://github.com/ByteTrix/media-player-scrobbler-for-simkl/issues"
Documentation = "https://github.com/ByteTrix/media-player-scrobbler-for-simkl/wiki"
[tool.poetry.group.dev.dependencies]
pytest = ">=6.2.5"
flake8 = ">=5,<8"
pytest-mock = ">=3.6.1"
requests = ">=2.25.0"
types-requests = ">=2.25.0"
[tool.poetry.group.dev.dependencies.pyinstaller]
version = "^6.13.0"
python = ">=3.9,<3.15"
[tool.poetry.scripts]
simkl-mps = "simkl_mps.cli:main"
[tool.poetry.extras]
linux = [
"python-xlib",
]
macos = [
"pyobjc",
]
linux-full = [
"python-xlib",
"PyGObject",
]
[tool.setuptools]
include-package-data = true
[build-system]
requires = [
"poetry-core>=1.0.0",
]
build-backend = "poetry.core.masonry.api"