all repos — myprecious @ 5acbe103e332613faff043d102cc215dc13380d2

A lightweight web service to backup precious game saves.

pyproject.toml (view raw)

 1[tool.poetry]
 2name = "myprecious"
 3version = "0.1.0"
 4description = ""
 5authors = ["BiRabittoh <birabittoh@duck.com>"]
 6readme = "README.md"
 7
 8[tool.poetry.dependencies]
 9python = "^3.11"
10flask = "^2.3.2"
11flask-sqlalchemy = "^3.0.5"
12flask-login = "^0.6.2"
13werkzeug = "^2.3.6"
14wtforms = "^3.0.1"
15flask-wtf = "^1.1.1"
16igdb-api-v4 = "^0.2.0"
17python-dotenv = "^1.0.0"
18
19
20[build-system]
21requires = ["poetry-core"]
22build-backend = "poetry.core.masonry.api"