forked from misiektoja/spotify_monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.89 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spotify_monitor"
version = "2.9.1"
description = "Track Spotify friends' music activity in real time with auto-playback, skipped tracks detection and instant notifications"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICEN[CS]E*"]
authors = [{ name = "Michal Szymanski", email = "misiektoja-pypi@rm-rf.ninja" }]
requires-python = ">=3.6"
dependencies = [
"requests>=2.0",
"python-dateutil>=2.8",
"urllib3>=2.0.7",
"pyotp>=2.9.0",
"python-dotenv>=0.19",
"wcwidth>=0.2.7",
"spotipy>=2.24.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
keywords = ["spotify", "monitoring", "tracking", "real-time", "friend-activity", "osint"]
[project.urls]
Homepage = "https://github.com/misiektoja/spotify_monitor"
Source = "https://github.com/misiektoja/spotify_monitor"
Changelog= "https://github.com/misiektoja/spotify_monitor/blob/main/RELEASE_NOTES.md"
[project.scripts]
spotify_monitor = "spotify_monitor:main"
spotify_monitor_secret_grabber = "debug.spotify_monitor_secret_grabber:main"
spotify_monitor_totp_test = "debug.spotify_monitor_totp_test:main"
[tool.setuptools]
py-modules = ["spotify_monitor"]
include-package-data = true
[tool.setuptools.packages.find]
include = ["debug*"]
namespaces = true