Nick Ficano
commited on
Commit
·
eb9f6ea
1
Parent(s):
4fda591
bumped verison to 0.2.1
Browse files- LICENSE.txt +1 -1
- README.rst +2 -2
- pytube/__init__.py +2 -2
LICENSE.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
Copyright (c)
|
2 |
|
3 |
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4 |
this software and associated documentation files (the "Software"), to deal in
|
|
|
1 |
+
Copyright (c) 2015 Nick Ficano (http://nickficano.com)
|
2 |
|
3 |
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4 |
this software and associated documentation files (the "Software"), to deal in
|
README.rst
CHANGED
@@ -36,13 +36,13 @@ Using PIP via Github
|
|
36 |
|
37 |
.. code:: bash
|
38 |
|
39 |
-
pip install git+git://github.com/NFicano/pytube.git@0.2.
|
40 |
|
41 |
Adding to your ``requirements.txt`` file (run ``pip install -r requirements.txt`` afterwards)
|
42 |
|
43 |
.. code:: bash
|
44 |
|
45 |
-
git+ssh://git@github.com/NFicano/pytube.git@0.2.
|
46 |
|
47 |
Manually via GIT
|
48 |
|
|
|
36 |
|
37 |
.. code:: bash
|
38 |
|
39 |
+
pip install git+git://github.com/NFicano/pytube.git@0.2.1#egg=pytube
|
40 |
|
41 |
Adding to your ``requirements.txt`` file (run ``pip install -r requirements.txt`` afterwards)
|
42 |
|
43 |
.. code:: bash
|
44 |
|
45 |
+
git+ssh://git@github.com/NFicano/pytube.git@0.2.1#egg=pytube
|
46 |
|
47 |
Manually via GIT
|
48 |
|
pytube/__init__.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
__title__ = 'pytube'
|
2 |
-
__version__ = '0.2.
|
3 |
__author__ = 'Nick Ficano'
|
4 |
__license__ = 'MIT License'
|
5 |
-
__copyright__ = 'Copyright
|
6 |
|
7 |
from .api import YouTube
|
8 |
YouTube
|
|
|
1 |
__title__ = 'pytube'
|
2 |
+
__version__ = '0.2.1'
|
3 |
__author__ = 'Nick Ficano'
|
4 |
__license__ = 'MIT License'
|
5 |
+
__copyright__ = 'Copyright 2015 Nick Ficano'
|
6 |
|
7 |
from .api import YouTube
|
8 |
YouTube
|