Skip to content

Commit

Permalink
Add setuptools import to setup.py
Browse files Browse the repository at this point in the history
This fixes a distutils error for unknown distribution options:
'entry_points' and 'install_requires'. See
https://stackoverflow.com/a/50722265/1905235
  • Loading branch information
hunterboerner committed May 23, 2021
1 parent 6a30b55 commit 5927753
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Dependencies
Check if your operating system provides those packages (check also those [deb/rpm/mac files](https://github.com/qiuwei/youtube-upload/releases)), otherwise install them with `pip`:

```
$ sudo pip install --upgrade google-api-python-client oauth2client progressbar2
$ pip install --upgrade google-api-python-client oauth2client progressbar2
```

Install
Expand All @@ -22,7 +22,7 @@ Install
$ wget https://github.com/tokland/youtube-upload/archive/master.zip
$ unzip master.zip
$ cd youtube-upload-master
$ sudo python setup.py install
$ python setup.py install
```

Or run directly from sources:
Expand Down

0 comments on commit 5927753

Please sign in to comment.