aboutsummaryrefslogtreecommitdiff
path: root/blog/pyproject.toml
blob: fe929ded856ab7a4c30cddc2947a048618b76519 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[tool.poetry]
name = "blog"
version = "0.1.0"
description = ""
authors = ["alex <alex@pdp7.net>"]
packages = [{include = "blog"}]

[tool.poetry.dependencies]
python = "^3.9"
# bicephalus = { path = "../../bicephalus", develop = true }
bicephalus = { git = "https://github.com/alexpdp7/bicephalus.git" }
htmlgenerator = "^1.2.30"
beautifulsoup4 = "^4.12.3"
feedgen = "^1.0.0"
lxml = "^5.2.2"

[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
ipython = "^8.15.0"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.pytest.ini_options]
addopts = "--doctest-modules"
doctest_optionflags = "NORMALIZE_WHITESPACE"