File size: 1,088 Bytes
4eb9602 59fde0c f763abc 4eb9602 |
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 |
import os
from setuptools import setup
"""
PyTube
-------
"""
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "pytube",
version = "0.0.4",
author = "Nick Ficano",
author_email = "[email protected]",
description = "A lightwight, dependency-free YouTube Video downloading library",
license='The MIT License: http://www.opensource.org/licenses/mit-license.php',
keywords = "youtube downloader",
url = "https://github.com/NFicano/python-youtube-download",
download_url="https://github.com/NFicano/python-youtube-download/tarball/master",
packages=['pytube'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
)
|