-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
40 lines (35 loc) · 1.15 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
40
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pyytdata",
version="0.3.0",
author="Prince Roshan",
author_email="[email protected]",
url="https://github.com/princekrroshan01/youtube-api-wrapper",
description=("A python library which provides all possible metadata of YouTube videos."),
long_description=read("README.rst"),
license="MIT",
packages=["pyytdata", "pyytdata.util"],
keywords=[
"youtube-api" "recommend-youtube-videos",
"youtube-data",
"python",
"wrapper",
"youtube-data-api-v3",
"youtube-api-wrapper",
"youtube-api-v3",
],
python_requires=">=3.7",
install_requires=["google-api-python-client"],
classifiers=[
"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",
"Operating System :: OS Independent",
],
include_package_data=True,
)