-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
34 lines (30 loc) · 1.12 KB
/
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
[tool.poetry]
name = "python-logging-discord-handler"
version = "0.1.4"
description = "Discord handler for Python logging framework"
authors = ["Mikko Ohtamaa <[email protected]>"]
license = "MIT"
packages = [
{ include = "discord_logging" },
]
homepage = "https://tradingstrategy.ai"
repository = "https://github.com/tradingstrategy-ai/python-logging-discord-handler"
readme = "README.md"
keywords = ["discord", "logger", "logging"]
[tool.poetry.dependencies]
python = "^3.8"
discord-webhook = "^1.0.0"
Sphinx = {version = "^4.4.0", optional = true}
sphinx-rtd-theme = {version = "^1.0.0", optional = true}
sphinx-sitemap = {version = "^2.2.0", optional = true}
sphinx-autodoc-typehints = {version = "^1.16.0", extras = ["docs"], optional = true}
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
requests-mock = "^1.9.3"
ipdb = "^0.13.9"
# See discussion https://github.com/python-poetry/poetry/issues/3348#issuecomment-726534462
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinx-sitemap", "sphinx-autodoc-typehints"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"