-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
26 lines (24 loc) · 858 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
from setuptools import setup, find_packages
setup(
name="youtube-scraper",
version="1.0.3",
description=("Provide information for youtube related metadata"),
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="youtube scraper meta",
author="Jon Robison",
author_email="[email protected]",
url="https://github.com/narfman0/youtube-scraper",
license="LICENSE",
packages=find_packages(),
include_package_data=True,
py_modules=["youtube_scraper.scraper"],
zip_safe=True,
install_requires=["beautifulsoup4", "requests"],
test_suite="tests",
)