diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..24012d8 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "wtfpython" +version = "3.0.0" +description = "What the f*ck Python!" +authors = ["Satwik Kansal "] +license = "WTFPL 2.0" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.9" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"