20 lines
431 B
TOML
20 lines
431 B
TOML
|
[build-system]
|
||
|
requires = ["setuptools", "wheel"]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
|
||
|
[project]
|
||
|
name = "snekbot"
|
||
|
version = "1.0.0"
|
||
|
readme = "README.md"
|
||
|
license = { file = "LICENSE", content-type="text/markdown" }
|
||
|
description = "Bot API for Snek chat"
|
||
|
authors = [
|
||
|
{ name = "retoor", email = "retoor@molodetz.nl" }
|
||
|
]
|
||
|
keywords = ["chat", "snek", "molodetz","bot"]
|
||
|
requires-python = ">=3.12"
|
||
|
dependencies = [
|
||
|
"aiohttp"
|
||
|
]
|
||
|
|