forked from pytube/pytube
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.14 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.14 KB
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
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.5",
author = "Nick Ficano",
author_email = "nficano@gmail.com",
description = "A simple, yet versatile package for downloading YouTube videos.",
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",
"Programming Language :: Python",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
)