23 lines
482 B
TOML
23 lines
482 B
TOML
[tool.poetry]
|
|
package-mode = false
|
|
|
|
[project]
|
|
name = "very-bad-bot"
|
|
version = "1.0"
|
|
description = "Discord bot for Pilots' Lounge Discord Server"
|
|
authors = [
|
|
{name = "Gabriella Agathon",email = "gstimac@msudenver.edu"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"discord-py (==2.4.0)",
|
|
"pylint (>=4.0.4,<5.0.0)",
|
|
"pytest (>=9.0.2,<10.0.0)"
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|