-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (38 loc) · 1.44 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
39
from setuptools import find_packages, setup
setup(
name="darkdown",
version="1.1.0",
packages=find_packages(), # Specify that `src` contains the packages
include_package_data=True,
install_requires=[
"yt-dlp>=2024.10.7", # This is the core dependency for downloading videos.
"requests>=2.32.3", # Commonly used for making HTTP requests, often used for network operations in downloaders.
"websockets>=13.0", # real-time communication or controls via websockets.
"mutagen>=1.47.0", # This is an audio metadata library
],
entry_points={
"console_scripts": [
"darkdown=src.main:main",
],
},
package_data={
"": ["config.ini"], # Adjust as needed to specify the exact path
},
author="0xRach",
author_email="[email protected]",
description="A powerful YouTube video and playlist and audio downloader using yt-dlp",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="[email protected]:OxRachid/darkdown.git",
python_requires=">=3.6",
# Make sure your package is easily installable
zip_safe=False,
# Add classifiers for better visibility
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Video",
"Environment :: Console",
],
)