forked from jaymoulin/youtube-music-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (43 loc) · 1.51 KB
/
setup.cfg
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
[metadata]
name = youtube_music_uploader
version = attr: youtube_music_uploader.__version__
description = Youtube Music package to upload your music library to Youtube Music
long_description = file: README.rst
author = Jay MOULIN
url = https://github.com/jaymoulin/youtube-music-uploader/
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
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
Topic :: Communications :: File Sharing
Topic :: Artistic Software
Topic :: Internet :: File Transfer Protocol (FTP)
Topic :: Home Automation
Topic :: Internet
Topic :: Multimedia :: Sound/Audio
[options]
include_package_data = True
packages = find:
install_requires =
watchdog
requests
ytmusicapi
python_requires = >=3
[options.entry_points]
console_scripts =
youtube-music-auth = youtube_music_uploader.auth:main
youtube-music-upload = youtube_music_uploader.uploader_daemon:main
youtube-music-upload-deduplicate = youtube_music_uploader.deduplicate:main