diff options
Diffstat (limited to '')
| -rw-r--r-- | pyproject.toml | 21 | 
1 files changed, 15 insertions, 6 deletions
| diff --git a/pyproject.toml b/pyproject.toml index 5a347181..4cea079a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,18 +1,26 @@  [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." +name = "pydis_core" +version = "9.0.0" +description = "PyDis 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 = "pydis_core" },  ] +include = ["LICENSE"]  exclude = ["tests", "tests.*"] +readme = "README.md" +homepage = "https://pythondiscord.com/" +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.*" @@ -45,6 +53,7 @@ Sphinx = "5.2.2"  GitPython = "3.1.27"  sphinx-autodoc-typehints = "1.19.4"  furo = "2022.9.15" +six = "1.16.0"  releases = "1.6.3"  sphinx-multiversion = "0.2.4" @@ -61,5 +70,5 @@ build-backend = "poetry.core.masonry.api"  [tool.coverage.run]  branch = true -source_pkgs = ["botcore"] +source_pkgs = ["pydis_core"]  source = ["tests"] | 
