[tool.poetry] name = "masto-ld" version = "0.1.0" description = "A bot for prefixing and using linked data from Mastodon" authors = ["sneakers-the-rat "] license = "AGPL-3.0" readme = "README.md" packages = [{include = "masto_ld"}] [tool.poetry.dependencies] python = "^3.9" pydantic = {extras = ["dotenv", "email"], version = "^1.10.2"} mastodon-py = "^1.5.2" pyparsing = "^3.0.9" rich = "^12.6.0" beautifulsoup4 = "^4.11.1" lxml = "^4.9.1" pypandoc = "^1.10" requests = "^2.28.1" wikitextparser = "^0.51.1" [tool.poetry.scripts] masto_ld = 'masto_ld.main:masto_ld' [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"