From 026ceb214a92e01a4c812319a658eef19e5c9531 Mon Sep 17 00:00:00 2001 From: RohanJnr Date: Sat, 6 Nov 2021 14:32:09 +0530 Subject: Use pyproject.toml as a replacement for setup.py --- pyproject.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 57160220..2f602817 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,18 @@ [tool.poetry] name = "bot-core" version = "0.1.0" -description = "Skeleton and utilities for Python Discord bots" +description = "Bot-Core provides the core functionality and utilities for the bots of the Python Discord community." authors = ["Python Discord "] +license = "MIT" +classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] +packages = [ + { include = "botcore" }, +] +exclude = ["tests", "tests.*"] [tool.poetry.dependencies] python = "^3.9" -- cgit v1.2.3