stacosys/pyproject.toml

33 lines
647 B
TOML
Raw Normal View History

2019-12-28 17:02:25 +01:00
[tool.poetry]
name = "stacosys"
2022-11-18 19:21:35 +01:00
version = "3.3"
2019-12-28 17:02:25 +01:00
description = "STAtic COmmenting SYStem"
authors = ["Yax"]
2019-12-28 17:19:45 +01:00
readme = "README.md"
include = ["run.py"]
2019-12-28 17:02:25 +01:00
[tool.poetry.dependencies]
2022-11-18 19:21:35 +01:00
python = "~3.11"
2019-12-28 17:02:25 +01:00
apscheduler = "^3.6.3"
pyrss2gen = "^1.1"
markdown = "^3.1.1"
requests = "^2.25.1"
2021-08-15 15:26:21 +02:00
coverage = "^5.5"
2021-12-11 16:40:12 +01:00
peewee = "^3.14.8"
tox = "^3.24.5"
2022-02-18 18:21:12 +01:00
background = "^0.2.1"
2022-04-27 03:12:01 +02:00
Flask = "^2.1.1"
2022-11-19 21:12:47 +01:00
types-markdown = "^3.4.2.1"
2019-12-28 17:02:25 +01:00
2022-11-19 20:40:58 +01:00
[tool.poetry.group.dev.dependencies]
pylint = "^2.15.5"
mypy = "^0.991"
pytest = "^7.2.0"
coveralls = "^3.3.1"
flake8-black = "^0.3.4"
pytest-cov = "^4.0.0"
2019-12-28 17:02:25 +01:00
[build-system]
2021-12-11 16:40:12 +01:00
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"