-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 1.17 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool.poetry]
authors = [
"Fredrik Bore <fredrik@bore.ai>",
]
description = ""
name = "meadstatsapi"
readme = "README.md"
version = "0.1.0"
[tool.poetry.dependencies]
Flask = "^2.3.2"
Flask-Cors = "^3.0.10"
Flask-JWT-Extended = "^4.5.2"
Flask-Migrate = "^4.0.4"
Flask-SQLAlchemy = "^3.0.5"
Flask-SocketIO = "^5.3.4"
eventlet = "^0.33.3"
flask-marshmallow = "^0.15.0"
gunicorn = "^20.1.0"
marshmallow = "^3.19.0"
marshmallow-sqlalchemy = "^0.29.0"
psycopg2-binary = "^2.9.6"
pyOpenSSL = "^23.2.0"
pycountry = "^22.3.5"
python = "^3.11"
python-dotenv = "^1.0.0"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pylint = "^2.17.4"
[tool.poetry.scripts]
meadstatsapi = "meadstatsapi.app:main"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [
"poetry-core",
]