26 lines
616 B
TOML
26 lines
616 B
TOML
[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}
|
|
|
|
[tool.poetry.extras]
|
|
dev = ["praw"]
|
|
|
|
[tool.poetry.scripts]
|
|
inquisitor = "inquisitor.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|