Red-DiscordBot/tools/primary_deps.ini
Draper 3c1b6ae4cf [Utils] Add humanize_number() function to chat formatting (#2836)
This adds babel as a dependency, and also includes `redbot.core.i18n.get_babel_locale()`
2019-08-28 08:44:52 +10:00

46 lines
1.1 KiB
INI

# primary_deps.ini
# This file should list primary dependencies in terms of both core and
# extras, in setup.cfg format. A primary dependency is one which is
# used directly in Red, or otherwise is forced to be listed as a
# dependency. Version specifiers should be as liberal as possible.
[options]
install_requires =
aiohttp
aiohttp-json-rpc
appdirs
babel
click
colorama
discord.py
distro; sys_platform == "linux"
fuzzywuzzy
python-Levenshtein-wheels
PyYAML
Red-Lavalink
schema
tqdm
uvloop; sys_platform != "win32" and platform_python_implementation == "CPython"
# Websockets is a secondary dependency, but until pip has a complete dependency resolver, we
# need to list it here to avoid an incompatible version being installed.
# See under point 2 here: https://pip.pypa.io/en/stable/user_guide/#requirements-files
websockets<7.0
[options.extras_require]
docs =
Sphinx
sphinx_rtd_theme
sphinxcontrib-trio
towncrier
mongo =
dnspython
motor
postgres =
asyncpg
style =
black
test =
pylint
pytest
pytest-asyncio