-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
31 lines (26 loc) · 850 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
import pathlib
import setuptools
file = pathlib.Path(__file__).parent
README = (file / "README.md").read_text()
setuptools.setup(
name="YoutubeTags",
version="1.4",
author="Nuhman Pk",
author_email="nuhmanpk7@gmail.com",
long_description = README,
long_description_content_type = "text/markdown",
description="YoutubeTags is a python third-party api wrapper to Extract Youtube Video Tags without Youtube API",
license="MIT",
url="https://github.com/nuhmanpk/YoutubeTags",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(include=['YoutubeTags']),
install_requires=[
'bs4',
'requests'
],
python_requires=">=3.6",
)