aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-11-05 13:39:52 +0000
committerGravatar Chris Lovering <[email protected]>2022-11-05 14:05:00 +0000
commit962968fecedca3bef33ba9524d87ffedf815f16d (patch)
tree3dd7b6c6cae4f01c8a5aae3e2371bd3a5e9dd0e7 /pyproject.toml
parentUpdate pyproject.toml module meta data (diff)
Rename package due to naming conflict
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml11
1 files changed, 6 insertions, 5 deletions
diff --git a/pyproject.toml b/pyproject.toml
index d7a4bfb5..b742991d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,7 +1,7 @@
[tool.poetry]
-name = "bot-core"
-version = "8.2.1"
-description = "PyDis bot core provides core functionality and utility to 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=[
@@ -12,11 +12,12 @@ classifiers=[
"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"]
@@ -68,5 +69,5 @@ build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
-source_pkgs = ["botcore"]
+source_pkgs = ["pydis_core"]
source = ["tests"]