-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (36 loc) · 1.28 KB
/
setup.py
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
from codecs import open
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
from youtube2mp3 import __version__, __author__
this_dir = abspath(dirname(__file__))
with open(join(this_dir, 'README.rst'), encoding='utf-8') as file:
long_description = file.read()
setup(
name='youtube2mp3',
version=__version__,
description='Commandline tool to convert youtube videos to tagged mp3 files',
long_description=long_description,
url='https://github.com/pfitzer/youtube2mp3.git',
author=__author__,
author_email='[email protected]',
license='MIT',
install_requires=['yt-dlp>=2024.9.27', 'mutagen>=1.47.0'],
keywords='youtube mp3',
packages=find_packages(),
python_requires='~=3.10, <4',
entry_points={
'console_scripts': [
'youtube2mp3=youtube2mp3.cli:main',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Multimedia :: Video :: Conversion'
]
)