Red-DiscordBot/setup.cfg
jack1142 aea0db4ef6
Include more files in distributions (#4964)
* Include LICENSE files in distributions

* Use pep517 isolated builds

* Update the GH Actions workflow
2021-04-08 02:35:47 +02:00

141 lines
3.5 KiB
INI

[metadata]
name = Red-DiscordBot
version = attr: redbot.__version__
description = A highly customisable Discord bot
license = GPL-3.0
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
author = Cog-Creators
author_email = cogcreators@gmail.com
url = https://github.com/Cog-Creators/Red-DiscordBot
project_urls =
Discord Server = https://discord.gg/red
Documentation = https://docs.discord.red
Donate on Patreon = https://www.patreon.com/Red_Devs
Issue Tracker = https://github.com/Cog-Creators/Red-DiscordBot/issues
Source Code = https://github.com/Cog-Creators/Red-DiscordBot
classifiers =
# List at https://pypi.org/pypi?%3Aaction=list_classifiers
Development Status :: 5 - Production/Stable
Framework :: AsyncIO
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.8
Topic :: Communications :: Chat
license_files =
LICENSE
redbot/**/*.LICENSE
[options]
packages = find_namespace:
python_requires = >=3.8.1,<3.9
include_package_data = True
install_requires =
aiohttp==3.7.3
aiohttp-json-rpc==0.13.3
aiosqlite==0.16.1
appdirs==1.4.4
apsw-wheels==3.34.1.post1
async-timeout==3.0.1
attrs==20.3.0
Babel==2.9.0
chardet==3.0.4
click==7.1.2
colorama==0.4.4
commonmark==0.9.1
contextlib2==0.6.0.post1
discord.py==1.7.1
distro==1.5.0; sys_platform == "linux"
fuzzywuzzy==0.18.0
idna==2.10
Markdown==3.3.3
multidict==5.1.0
PyNaCl==1.3.0
Pygments==2.7.4
python-dateutil==2.8.1
python-Levenshtein-wheels==0.13.2
pytz==2021.1
PyYAML==5.4.1
Red-Lavalink==0.8.0
rich==9.9.0
schema==0.7.4
six==1.15.0
tqdm==4.56.2
typing-extensions==3.7.4.3
uvloop==0.15.0; sys_platform != "win32" and platform_python_implementation == "CPython"
yarl==1.6.3
[options.extras_require]
docs =
alabaster==0.7.12
certifi==2020.12.5
docutils==0.16
imagesize==1.2.0
Jinja2==2.11.3
MarkupSafe==1.1.1
packaging==20.9
pyparsing==2.4.7
requests==2.25.1
snowballstemmer==2.1.0
Sphinx==3.4.3
sphinx-prompt==1.4.0
sphinx-rtd-theme==0.5.1
sphinxcontrib-applehelp==1.0.2
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-htmlhelp==1.0.3
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.4
sphinxcontrib-trio==1.1.2
urllib3==1.26.3
postgres =
asyncpg==0.22.0
style =
black==20.8b1
mypy-extensions==0.4.3
pathspec==0.8.1
regex==2020.11.13
toml==0.10.2
typed-ast==1.4.2
test =
astroid==2.4.2
iniconfig==1.1.1
isort==5.7.0
lazy-object-proxy==1.4.3
mccabe==0.6.1
packaging==20.9
pluggy==0.13.1
py==1.10.0
pylint==2.6.0
pyparsing==2.4.7
pytest==6.2.2
pytest-asyncio==0.14.0
pytest-mock==3.5.1
toml==0.10.2
wrapt==1.12.1
all =
%(postgres)s
dev =
%(all)s
%(docs)s
%(style)s
%(test)s
[options.entry_points]
console_scripts =
redbot=redbot.__main__:main
redbot-setup=redbot.setup:run_cli
redbot-launcher=redbot.launcher:main
pytest11 =
red-discordbot=redbot.pytest
[options.packages.find]
include =
redbot
redbot.*