diff options
author | 2022-11-05 14:15:11 +0000 | |
---|---|---|
committer | 2022-11-05 14:15:11 +0000 | |
commit | 3f55e7149a3197b7fa41fcf7dc7df47a3a209cfd (patch) | |
tree | 11d77db3a48d8226bc1cd14cb18a21d2423b6352 /pyproject.toml | |
parent | Use New Static Build Site API (#122) (diff) | |
parent | Add six as a dev dep (diff) |
Merge pull request #157 from python-discord/prepare-for-pypi-releasev9.0.0
Prepare for pypi release
Diffstat (limited to 'pyproject.toml')
-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"] |