1
Fork 0
mirror of https://github.com/RGBCube/VReplBot synced 2025-07-29 17:37:47 +00:00

Initial commit without the functionality

This commit is contained in:
RGBCube 2023-01-30 19:39:44 +03:00
commit ec2bafb249
10 changed files with 2005 additions and 0 deletions

14
pyproject.toml Normal file
View file

@ -0,0 +1,14 @@
[tool.poetry]
name = "v-repl-bot"
version = "1.0.0"
description = "A simple Discord bot that runs your V code. "
authors = ["RGBCube"]
[tool.poetry.dependencies]
python = "^3.10"
"discord.py" = { version = "*", extras = ["speed"] }
jishaku = "*"
uvloop = "*"
[tool.poetry.scripts]
bot = "bot.__main__:main"