forked from lovvskillz/python-discord-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (29 loc) · 855 Bytes
/
pyproject.toml
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
32
33
34
35
36
[tool.poetry]
name = "discord-webhook"
version = "1.3.1"
description = "Easily send Discord webhooks with Python"
authors = ["lovvskillz <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "discord_webhook"}]
repository = "https://github.com/lovvskillz/python-discord-webhook"
keywords = ["discord", "webhook"]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.28.1"
httpx = { version = "^0.23.0", optional = true }
[tool.poetry.extras]
async = ["httpx"]
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
types-requests = "^2.28.11.4"
pytest = "^7.4.0"
ruff = "^0.1.15"
[tool.poetry.scripts]
discord_webhook = "discord_webhook.__main__:main"
[tool.ruff]
line-length = 88
ignore = ["E501"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"