Initial Handy Helper

This commit is contained in:
2023-03-15 22:04:25 -04:00
parent 22c8203ecd
commit ffea0b04bb
11 changed files with 1334 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[tool.poetry]
name = "handyhelper"
version = "0.0.1"
description = "Handy Helper for interacting with things such as research articles"
authors = ["David Crompton"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.28.2"
nextcord = "^2.4.1"
[tool.poetry.group.dev.dependencies]
ipython = "^8.11.0"
python-lsp-server = "^1.7.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"