diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..31a3ab5 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,18 @@ +[tool.poetry] +name = "traktrecs" +version = "0.1.0" +description = "" +authors = ["navanchauhan <navanchauhan@gmail.com>"] + +[tool.poetry.dependencies] +python = "^3.9" +requests = "^2.27.1" +SQLAlchemy = "^1.4.36" +tqdm = "^4.64.0" + +[tool.poetry.dev-dependencies] +jupyter = "^1.0.0" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" |