commit c2c1785389ab606cdd9688093c311fe3682d9a84 Author: Meng Zhang Date: Thu Mar 16 15:38:03 2023 +0800 Init commit diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..cf161de --- /dev/null +++ b/poetry.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand. +package = [] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "53f2eabc9c26446fbcc00d348c47878e118afc2054778c3c803a0a8028af27d9" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..fffdab5 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "tabby" +version = "0.1.0" +description = "" +authors = ["Meng Zhang "] +license = "Apache 2.0" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"