-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.25 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (35 loc) · 1.25 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="yt-search-python",
version="2.0.0",
author="SkyBotsDeveloper",
license="MIT",
author_email="iflexelite@users.noreply.github.com",
description="Search YouTube contents without YouTube Data API v3. Hardened fork with modern sync/async support.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SkyBotsDeveloper/youtube-search-python",
packages=setuptools.find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"httpx>=0.28.1,<1.0"
],
extras_require={
"streams": ["yt-dlp>=2024.11.18"],
},
classifiers=[
"Programming Language :: Python :: 3",
"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",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)