diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2023-10-07 15:20:28 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2023-10-07 15:20:28 -0600 |
commit | 7f086eb98ea7053d9939bdb8ae3f46cc5796e9c6 (patch) | |
tree | f127e238d12fe081e0a17f1804df521990d13300 /pyproject.toml | |
parent | 44545ae5ea46748e34fc14694f1e801d56581c87 (diff) |
add boilerplate
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7f97d47 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,21 @@ +[tool.poetry] +name = "autoaid" +version = "0.1.0" +description = "" +authors = ["Navan Chauhan <navanchauhan@gmail.com>"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +boilerpy3 = "^1.0.6" +rich = "^13.6.0" +click = "^8.1.7" +uvicorn = "^0.23.2" +jsbeautifier = "^1.14.9" +google-search-results = "^2.4.2" +flask = "^3.0.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" |