Richard Borcsik commited on
Commit
4e78f3b
·
1 Parent(s): 0275bdb

Added myself to the AUTHORS file.

Browse files
Files changed (3) hide show
  1. AUTHORS +1 -0
  2. pytube/__init__.py +1 -0
  3. setup.py +4 -0
AUTHORS CHANGED
@@ -2,3 +2,4 @@ Author: Nick Ficano <[email protected]>
2
 
3
  Contributors:
4
  Lorenzo Gil Sanchez <[email protected]>
 
 
2
 
3
  Contributors:
4
  Lorenzo Gil Sanchez <[email protected]>
5
+ Richard Borcsik <[email protected]>
pytube/__init__.py CHANGED
@@ -5,3 +5,4 @@ __license__ = 'MIT License'
5
  __copyright__ = 'Copyright 2013 Nick Ficano'
6
 
7
  from .api import YouTube
 
 
5
  __copyright__ = 'Copyright 2013 Nick Ficano'
6
 
7
  from .api import YouTube
8
+ from .cli import _main
setup.py CHANGED
@@ -22,6 +22,10 @@ setup(
22
  download_url="https://github.com/NFicano/python-youtube-download/tarball/master",
23
  packages=['pytube'],
24
  use_2to3=True,
 
 
 
 
25
  long_description=read('README.md'),
26
  classifiers=[
27
  "Development Status :: 4 - Beta",
 
22
  download_url="https://github.com/NFicano/python-youtube-download/tarball/master",
23
  packages=['pytube'],
24
  use_2to3=True,
25
+ entry_points={
26
+ "console_scripts": [
27
+ "pytube = pytube:_main",
28
+ ]},
29
  long_description=read('README.md'),
30
  classifiers=[
31
  "Development Status :: 4 - Beta",