diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d8c3ac5 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "backend" +version = "0.1.0" +description = "Backend for Python Discord Forms" +authors = ["Joe Banks <[email protected]>"] +license = "MIT" + +[tool.poetry.dependencies] +python = "^3.8" +starlette = "^0.13.8" +nested_dict = "^1.61" +uvicorn = "^0.12.2" +pymongo = "^3.11.0" +python-dotenv = "^0.14.0" +pyjwt = "^1.7.1" +httpx = "^0.16.1" + +[tool.poetry.dev-dependencies] +flake8 = "^3.8.4" +flake8-annotations = "^2.4.1" + +[build-system] +requires = ["poetry>=0.12"] +build-backend = "poetry.masonry.api" |