forked from soimort/you-get
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
471 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
/build/ | ||
/dist/ | ||
/*.egg-info/ | ||
|
||
_*/ | ||
*.py[cod] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,20 @@ | ||
Changelog | ||
========= | ||
|
||
0.1 | ||
--- | ||
|
||
*Date: 2012-09-01* | ||
|
||
* First PyPI release. | ||
* Fix issue `#1 <https://github.com/soimort/you-get/issues/1>`_. | ||
|
||
0.0.1 | ||
----- | ||
|
||
*Date: 2012-08-21* | ||
|
||
* Initial release, forked from `iambus/youku-lixian <https://github.com/iambus/youku-lixian>`_; add: | ||
- YouTube support. | ||
- Pausing and resuming of downloads. | ||
- HTTP proxy settings. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
default: install sdist bdist | ||
default: sdist bdist bdist_egg install | ||
|
||
clean: | ||
rm -fr build/ dist/ | ||
rm -fr build/ dist/ *.egg-info/ | ||
|
||
build: | ||
python3 setup.py build | ||
|
||
install: build | ||
sudo python3 setup.py install | ||
|
||
sdist: | ||
python3 setup.py sdist | ||
|
||
bdist: | ||
python3 setup.py bdist | ||
|
||
.PHONY: default clean build install sdist bdist | ||
bdist_egg: | ||
python3 setup.py bdist_egg | ||
|
||
install: bdist_egg | ||
sudo python3 setup.py install | ||
|
||
.PHONY: default clean build sdist bdist bdist_egg install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.