-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 778 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (25 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[tool.poetry]
name = "discord.ext.context"
version = "0.1.8"
description = "Globally accessable context for discord.py events."
authors = ["scragly <29337040+scragly@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/scragly/discord.ext.context"
keywords = ["discord", "event", "context", "discord.py", "extension"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
packages = [
{ include = "discord/ext" },
]
[tool.poetry.dependencies]
python = "^3.7"
"discord.py" = ">=1.6.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"