all repos — artbound-python @ fef95b2561b4374a13a10ba4179a4af1f37e1752

A client-server reimplementation of the administration panel for ArtBound.

pyproject.toml (view raw)

 1[tool.poetry]
 2name = "artbound-python"
 3version = "0.1.0"
 4description = ""
 5authors = ["Andronaco Marco <marco.andronaco@olivetti.com>"]
 6readme = "README.md"
 7packages = [{include = "artbound_python"}]
 8
 9[tool.poetry.dependencies]
10python = "^3.11"
11flask = "^2.3.2"
12google-api-python-client = "^2.95.0"
13google-auth-httplib2 = "^0.1.0"
14google-auth-oauthlib = "^1.0.0"
15requests = "^2.31.0"
16python-dotenv = "^1.0.0"
17waitress = "^2.1.2"
18
19[tool.poetry.group.prod]
20optional = true
21
22[tool.poetry.group.prod.dependencies]
23bjoern = "^3.2.2"
24
25[build-system]
26requires = ["poetry-core"]
27build-backend = "poetry.core.masonry.api"