summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authornavanchauhan <navanchauhan@gmail.com>2022-08-07 22:54:14 -0400
committernavanchauhan <navanchauhan@gmail.com>2022-08-07 22:54:14 -0400
commitbaabb2b25d6be59c17c2ae0ce9cd81aa1a2ce1a5 (patch)
tree8d8ca79e65242cbd994596ffc1e9b5fb67afde7c /pyproject.toml
parent0eb59b933a38d3ac8b6d426b5a46ec8e9f139fe5 (diff)
created poetry project
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml17
1 files changed, 17 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..d930204
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,17 @@
+[tool.poetry]
+name = "navanchauhan.github.io"
+version = "0.1.0"
+description = ""
+authors = ["navanchauhan <navanchauhan@gmail.com>"]
+
+[tool.poetry.dependencies]
+python = "^3.9"
+Jinja2 = "^3.1.2"
+markdown2 = "^2.4.3"
+Pygments = "^2.12.0"
+
+[tool.poetry.dev-dependencies]
+
+[build-system]
+requires = ["poetry-core>=1.0.0"]
+build-backend = "poetry.core.masonry.api"