aboutsummaryrefslogtreecommitdiff
path: root/blog/pyproject.toml
diff options
context:
space:
mode:
authoralex <alex@pdp7.net>2023-10-13 16:11:25 +0200
committeralex <alex@pdp7.net>2023-10-13 16:11:25 +0200
commit250201b433c0a99f6cabcb2596bfe43f1a5a3968 (patch)
tree8dc5de16ed4315b3ab4fcc001b7dbd74d475c4b3 /blog/pyproject.toml
parent1a80ac63854ba4ea28f81194ad15314771e979d5 (diff)
Moving to prod!
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"