-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.16 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.16 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
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="Prakhar",
license="MIT",
author_email="srvopus@gmail.com",
description="Search YouTube contents without YouTube Data API v3. Professionally maintained fork with modern Sync & Async Python support.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BillaSpace/yt-search-python",
packages=setuptools.find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"httpx>=0.28.1"
],
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",
)