blob: d2a7d0e77f60c0d16b21a7cb7965f791808d66ff (
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
|
[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.28"
beautifulsoup4 = "^4.12.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.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"
|