inquisitor/pyproject.toml

25 lines
611 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]
python = "^3.6"
Flask = "^1.1.2"
requests = "^2.25.1"
beautifulsoup4 = "^4.9.3"
praw = {version = "^7.1.0", optional = true}
gunicorn = {version = "^20.0.4", optional = true}
2020-12-29 07:53:26 +00:00
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
inquisitor = "inquisitor.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"