20 lines
508 B
TOML
20 lines
508 B
TOML
[tool.poetry]
|
|
name = "paperbot"
|
|
version = "0.1.0"
|
|
description = "A mastodon bot for detecting DOIs in papers and making canonical threads for them."
|
|
authors = ["sneakers-the-rat <JLSaunders987@gmail.com>"]
|
|
license = "AGPL-3.0-or-later"
|
|
readme = "README.md"
|
|
packages = [{include = "paper_bot"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
"Mastodon.py" = "^1.8.0"
|
|
pydantic = "^1.10.2"
|
|
pyparsing = "^3.0.9"
|
|
rich = "^12.6.0"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|