Skip to content

Commit

Permalink
Add install by pip
Browse files Browse the repository at this point in the history
  • Loading branch information
stypr committed Feb 21, 2021
1 parent 2d45641 commit 67625f0
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,22 @@ Please click the image to open a Youtube video demo.

## Installation

### By pip

1. Install by pip

```sh
$ pip3 install clubhouse-py
...
Successfully built clubhouse-py
Installing collected packages: clubhouse-py
Successfully installed clubhouse-py-304.0.1
```

2. You need to install Agora SDK for voice communication. Refer to [Agora-Python-SDK#installation](https://github.com/AgoraIO-Community/Agora-Python-SDK#installation).

### Manual Installation

1. Clone project

```sh
Expand Down
6 changes: 6 additions & 0 deletions build-pypi.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

rm -rf dist
rm -rf clubhouse_py.egg-info
python setup.py sdist
twine upload dist/*
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def _requires_from_file(filename):
setup(
name="clubhouse-py",
packages=["clubhouse"],
version="304.0.0",
version="304.0.1",
license="MIT",
description=("Clubhouse API written in Python. Standalone client included." +
"For reference and education purposes only."),
Expand All @@ -25,7 +25,7 @@ def _requires_from_file(filename):
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/stypr/clubhouse-py",
download_url="https://github.com/stypr/clubhouse-py/archive/v304.tar.gz",
download_url="https://github.com/stypr/clubhouse-py/archive/304.0.1.tar.gz",
keywords=[
"clubhouse",
"voice-chat",
Expand Down

0 comments on commit 67625f0

Please sign in to comment.