aboutsummarybugs & patchesrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 93d63030ce203d0bc0f49148f50168b05e1a2272 (about) (plain)
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
[project]
name = "discord-image-bridge"
version = "0.1.0"
description = ""
authors = [
    {name = "Vosjedev",email = "vosje@vosjedev.net"}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
    "cherrypy (>=18.10.0,<19.0.0)",
    "requests (>=2.32.5,<3.0.0)",
    "mariadb (>=1.1.14,<2.0.0)",
    "ws4py (>=0.6.0,<0.7.0)"
]

[project.urls]
homepage = "https://git.vosjedev.net/discord_image_bridge.git/"
"Bug Tracker" = "https://bugs.vosjedev.net/discord_image_bridge/"

[tool.poetry]
packages = [{include = "discord_image_bridge", from = "src"}]

[tool.poetry.scripts]
discord_image_bridge = "discord_image_bridge:run"

[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"