-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1000 Bytes
/
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
"""Setup script for ytnoti."""
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as file: # noqa: PTH123
long_description = file.read()
setup(
name="ytnoti",
version="2.1.3",
packages=find_packages(),
author="SeoulSKY",
author_email="[email protected]",
description="Easy-to-use Python library for receiving YouTube push notification "
"for video upload and edit in real-time",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"fastapi~=0.111.0",
"httpx~=0.27.0",
"uvicorn~=0.30.1",
"xmltodict~=0.13.0",
"pyngrok~=7.1.6",
"aiofiles~=24.1.0",
],
url="https://github.com/SeoulSKY/ytnoti",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.11",
)