27 lines
583 B
TOML
27 lines
583 B
TOML
[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.scripts]
|
|
handyhelper = "handyhelper:main"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
requests = "^2.28.2"
|
|
nextcord = "^2.4.1"
|
|
openai = "^0.27.2"
|
|
beautifulsoup4 = "^4.11.2"
|
|
pdftotext = "^2.2.2"
|
|
|
|
[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"
|