17 lines
339 B
TOML
17 lines
339 B
TOML
[project]
|
|
name = "muck_discord_bot"
|
|
version = "0.0.1"
|
|
description = "A bot for connecting Discord to a MUCK."
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"python-dotenv",
|
|
"discord.py",
|
|
"telnetlib3"
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tools.setuptools]
|
|
packages = ["muck_discord_bot"]
|