diff options
author | 2021-11-06 14:32:09 +0530 | |
---|---|---|
committer | 2021-11-06 14:32:09 +0530 | |
commit | 026ceb214a92e01a4c812319a658eef19e5c9531 (patch) | |
tree | 0d7c31b93d55bccfc6503e1e72aea5593d12c573 | |
parent | Ignore .idea and .vscode folders. (diff) |
Use pyproject.toml as a replacement for setup.py
-rw-r--r-- | pyproject.toml | 12 |
1 files changed, 11 insertions, 1 deletions
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 <[email protected]>"] +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" |