[V3] Add voice install option and instructions in README (#979)

* [V3] add voice option to setup.py + instructions in readme

* Fix typo
This commit is contained in:
palmtree5 2017-10-01 09:25:32 -08:00 committed by Will
parent 31395d9efc
commit fc36dae54f
2 changed files with 7 additions and 2 deletions

View File

@ -22,6 +22,10 @@ Using python3 pip::
redbot-setup redbot-setup
redbot <name> redbot <name>
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:: 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]

View File

@ -107,6 +107,7 @@ setup(
extras_require={ extras_require={
'test': ['pytest>=3', 'pytest-asyncio'], 'test': ['pytest>=3', 'pytest-asyncio'],
'mongo': ['pymongo', 'motor'], 'mongo': ['pymongo', 'motor'],
'docs': ['sphinx', 'sphinxcontrib-asyncio', 'sphinx_rtd_theme'] 'docs': ['sphinx', 'sphinxcontrib-asyncio', 'sphinx_rtd_theme'],
'voice': ['PyNaCl']
} }
) )