diff options
author | 2022-11-05 13:40:40 +0000 | |
---|---|---|
committer | 2022-11-05 13:44:12 +0000 | |
commit | 39b94a1b295e54b8d667cbc6d2e64cb149a80bb1 (patch) | |
tree | 6b70e19c77a3c6774ac9e6028f358274472b3d85 /pyproject.toml | |
parent | Use New Static Build Site API (#122) (diff) |
Update pyproject.toml module meta data
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 5a347181..d7a4bfb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,18 +1,25 @@ [tool.poetry] name = "bot-core" version = "8.2.1" -description = "Bot-Core provides the core functionality and utilities for the bots of the Python Discord community." +description = "PyDis bot core provides core functionality and utility to the bots of the Python Discord community." authors = ["Python Discord <[email protected]>"] license = "MIT" classifiers=[ - "Programming Language :: Python :: 3", + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", + "Programming Language :: Python :: 3", ] packages = [ { include = "botcore" }, ] +include = ["LICENSE"] exclude = ["tests", "tests.*"] +readme = "README.md" +documentation = "https://bot-core.pythondiscord.com/" +repository = "https://github.com/python-discord/bot-core" +keywords = ["bot", "discord", "discord.py"] [tool.poetry.dependencies] python = "3.10.*" |