Browse Source

after poetry init

john melesky 2 years ago
parent
commit
6ca134b45d
2 changed files with 17 additions and 0 deletions
  1. 2 0
      .python-version
  2. 15 0
      pyproject.toml

+ 2 - 0
.python-version

@@ -0,0 +1,2 @@
+3.11.1
+3.10.9

+ 15 - 0
pyproject.toml

@@ -0,0 +1,15 @@
+[tool.poetry]
+name = "jm-hypermodern-python"
+version = "0.1.0"
+description = ""
+authors = ["john melesky <code@phaedrusdeinus.org>"]
+readme = "README.md"
+packages = [{include = "jm_hypermodern_python"}]
+
+[tool.poetry.dependencies]
+python = "^3.11"
+
+
+[build-system]
+requires = ["poetry-core"]
+build-backend = "poetry.core.masonry.api"