mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
[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:
parent
31395d9efc
commit
fc36dae54f
@ -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]
|
||||||
|
|||||||
3
setup.py
3
setup.py
@ -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']
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user