-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
72 lines (66 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "mosp"
version = "0.17.1"
description = "A platform for creating, editing and sharing JSON objects."
authors = ["Cédric Bonhomme <[email protected]>"]
license = "AGPL-3.0-or-later"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
SQLAlchemy = "^2.0.23"
Flask = "^3.0.0"
werkzeug = "3.0.6"
Flask-SQLAlchemy = "^3.0.3"
Flask-Login = "^0.6.0"
Flask-Principal = "^0.4.0"
Flask-WTF = "^1.1.1"
Flask-Migrate = "^3.1.0"
Flask-Admin = "^1.5.8"
Flask-paginate = "^2023.10.24"
Flask-Mail = "^0.9.1"
WTForms = "^3.0.1"
validate_email = "^1.3"
flask-babel = "^4.0.0"
alembic = "^1.7.4"
requests = "^2.32.3"
jsonschema = "^4.1.1"
psycopg2-binary = "^2.9.9"
flask-cors = "^5.0.0"
networkx = "^2.4"
email_validator = "^1.1.1"
flask_restx = "^1.3.0"
feedgen = "^0.9.0"
types-requests = "^2.32.0.20240712"
typing-extensions = "^4.0.1"
types-setuptools = "^65.6.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^6.2.5"
sqlalchemy-schemadisplay = "^1.3"
autoflake = "^1.4"
gitchangelog = "^3.0.4"
sphinx-book-theme = "^0.1.0"
flake8 = "^4.0.1"
mypy = "^0.910"
reorder-python-imports = "^3.0.1"
pyupgrade = "^2.31.1"
black = "^24.3.0"
pre-commit = "^2.17.0"
sphinx-multiversion = "^0.2.4"
sphinx-autodoc-typehints = "^1.18.3"
pip-audit = "^2.7.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.mypy]
python_version = "3.10"
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = true
strict_optional = true
no_implicit_optional = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
show_error_context = true
pretty = true
exclude = ["migrations", "docs", "tests"]