inquisitor/pyproject.toml

28 lines
718 B
TOML
Raw Normal View History

2020-12-29 07:53:26 +00:00
[tool.poetry]
name = "inquisitor"
version = "0.2.0"
description = "An arbitrary feed aggregator"
authors = ["Tim Van Baak <tim.vanbaak+inquisitor@gmail.com>"]
readme = "README.md"
repository = "https://github.com/Jaculabilis/Inquisitor"
[tool.poetry.dependencies]
2022-12-10 20:46:55 +00:00
python = "^3.10"
flask = "^2.2.2"
2022-12-02 07:08:37 +00:00
requests = "^2.28.1"
beautifulsoup4 = "^4.11.1"
2022-12-10 20:46:55 +00:00
praw = {version = "^7.6.1", optional = true}
gunicorn = {version = "^20.1.0", optional = true}
feedparser = {version = "^6.0.10", optional = true}
protobuf = "^4.21.12"
2020-12-29 07:53:26 +00:00
2020-12-30 04:05:06 +00:00
[tool.poetry.extras]
2021-01-01 03:05:41 +00:00
dev = ["praw", "gunicorn", "feedparser"]
2020-12-29 07:53:26 +00:00
[tool.poetry.scripts]
inquisitor = "inquisitor.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"