From fc36dae54f46dd41c744853bbcf3d9194db3da16 Mon Sep 17 00:00:00 2001 From: palmtree5 <3577255+palmtree5@users.noreply.github.com> Date: Sun, 1 Oct 2017 09:25:32 -0800 Subject: [PATCH] [V3] Add voice install option and instructions in README (#979) * [V3] add voice option to setup.py + instructions in readme * Fix typo --- README.rst | 6 +++++- setup.py | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 98f603da2..de3f04f1c 100644 --- a/README.rst +++ b/README.rst @@ -22,6 +22,10 @@ Using python3 pip:: redbot-setup redbot +To install requirements for voice:: + + pip install --process-dependency-links -U git+https://github.com/Cog-Creators/Red-DiscordBot@V3/develop#egg=red-discordbot[voice] + To install all requirements for docs and tests:: - pip install --process-dependency-links -U git+https://github.com/Cog-Creators/Red-DiscordBot@V3/develop#egg=red-discordbot[tests,docs] + pip install --process-dependency-links -U git+https://github.com/Cog-Creators/Red-DiscordBot@V3/develop#egg=red-discordbot[test,docs] diff --git a/setup.py b/setup.py index f11e2964d..244d1132c 100644 --- a/setup.py +++ b/setup.py @@ -107,6 +107,7 @@ setup( extras_require={ 'test': ['pytest>=3', 'pytest-asyncio'], 'mongo': ['pymongo', 'motor'], - 'docs': ['sphinx', 'sphinxcontrib-asyncio', 'sphinx_rtd_theme'] + 'docs': ['sphinx', 'sphinxcontrib-asyncio', 'sphinx_rtd_theme'], + 'voice': ['PyNaCl'] } )