aboutsummaryrefslogtreecommitdiff
path: root/blog/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'blog/pyproject.toml')
-rw-r--r--blog/pyproject.toml27
1 files changed, 27 insertions, 0 deletions
diff --git a/blog/pyproject.toml b/blog/pyproject.toml
new file mode 100644
index 00000000..b236e8ea
--- /dev/null
+++ b/blog/pyproject.toml
@@ -0,0 +1,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.28"
+beautifulsoup4 = "^4.12.2"
+feedgen = "^0.9.0"
+lxml = "^4.9.3"
+
+[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"