-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (41 loc) · 1.03 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
[tool.poetry]
name = "new-arrivals-chi"
version = "0.1.0"
description = ""
authors = ["Aaron Haefner <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
pre-commit = "^3.7.0"
pytest = "^8.1.1"
flask = "^3.0.3"
ipython = "^8.24.0"
bs4 = "^0.0.2"
pytest-flask = "^1.3.0"
python-dotenv = "^1.0.1"
flask-migrate = "^4.0.7"
psycopg2-binary = "^2.9.9"
flask-sqlalchemy = "^3.1.1"
faker = "^25.0.0"
flask-login = "^0.6.3"
pyopenssl = "^24.1.0"
password-strength = "^0.0.3.post2"
flask-bcrypt = "^1.0.1"
flask-testing = "^0.8.1"
bleach = "^6.1.0"
us = "^3.1.1"
flask-babel = "^4.0.0"
babel = {extras = ["jinja2"], version = "^2.15.0"}
jinja2 = "^3.1.4"
flask-jsonpify = "^1.5.0"
[tool.ruff.pydocstyle]
convention = "google"
[tool.ruff.per-file-ignores]
"new_arrivals_chi/migrations/*" = ["D103"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
addopts = "--ignore=tests/setup_fake_db.py"