34 lines
943 B
Python
34 lines
943 B
Python
from setuptools import find_packages, setup
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="youtube-cli",
|
|
version="0.1.0",
|
|
author="Your Name",
|
|
author_email="your.email@example.com",
|
|
description="A command-line interface for browsing and downloading YouTube videos",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/yourusername/youtube-cli",
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires=">=3.6",
|
|
install_requires=[
|
|
"yt-dlp",
|
|
"rich",
|
|
"requests",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"youtube-cli=youtube_cli.main:main",
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
)
|