diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2023-12-10 15:03:42 -0700 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2023-12-10 15:03:42 -0700 |
commit | 18c7a32d2bc213e50f1d543245633bad33e05eed (patch) | |
tree | a96b67ebe0f14fc1b5fdbc3929de8194c2c45363 /pyproject.toml |
init commit
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..7a1e9ac --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,18 @@ +[tool.poetry] +name = "excel2graph" +version = "0.1.0" +description = "" +authors = ["Navan Chauhan <navanchauhan@gmail.com>"] +readme = "README.md" + +[tool.poetry.dependencies] +python = ">=3.9,<4.0" +flask = "^3.0.0" +matplotlib = "^3.8.2" +pandas = "^2.1.3" +numpy = "^1.26.2" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" |