blob: a976dd60a182819dda0b433f05faa280713d2c19 (
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
|
[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)"
]
[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"
|