18 lines
385 B
TOML
18 lines
385 B
TOML
|
[tool.poetry]
|
||
|
name = "discord-notifier"
|
||
|
version = "0.1.0"
|
||
|
description = ""
|
||
|
authors = ["Radek Golan <shield@shielddagger.com>"]
|
||
|
readme = "README.md"
|
||
|
packages = [{include = "discord_notifier", from = "src"}]
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.10"
|
||
|
requests = "^2.31.0"
|
||
|
discord-webhook = "^1.3.1"
|
||
|
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core"]
|
||
|
build-backend = "poetry.core.masonry.api"
|