forked from ThePalaceProject/library-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (66 loc) · 1.58 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
73
74
75
76
77
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool]
[tool.isort]
profile = "black"
[tool.poetry]
authors = ["The Palace Project <[email protected]>"]
description = "The Palace Project library registry"
homepage = "https://thepalaceproject.org"
license = "Apache-2.0"
name = "library-registry"
readme = "README.md"
repository = "https://github.com/ThePalaceProject/library-registry"
version = "0" # Version number is managed with tags in git
[tool.poetry.dependencies]
alembic = "^1.9.4"
aws-xray-sdk = "<2.14"
bcrypt = "4.2.0"
boto3 = "^1.26.90"
feedparser = "*"
Flask = "^3.0.0"
Flask-Babel = "4.0.0"
Flask-Bcrypt = "*"
GeoAlchemy2 = "*"
gunicorn = "*"
levenshtein = "^0.25.1"
loggly-python-handler = "*"
lxml = "*"
maxminddb-geolite2 = "*"
Pillow = "*"
pycryptodome = "*"
PyJWT = "*"
python = ">=3.8,<4"
requests = "*"
SQLAlchemy = "^1.4"
uszipcode = "==1.0.1"
[tool.poetry.extras]
pg = ["psycopg2"]
pg-binary = ["psycopg2-binary"]
[tool.poetry.group.ci.dependencies]
dunamai = "^1.16.0"
pre-commit = "^3.5"
tox = "^4.4"
tox-docker = "^4.1"
tox-gh-actions = "^3.0"
[tool.poetry.group.dev.dependencies]
psycopg2-binary = "~2.9.5"
pytest = "^8"
pytest-datadir = "*"
pytest-timeout = "*"
[tool.poetry.group.pg]
optional = true
[tool.poetry.group.pg.dependencies]
psycopg2 = "~2.9.5"
[tool.pytest.ini_options]
timeout = "600"
timeout_method = "thread"
[tool.tomlsort]
ignore_case = true
in_place = true
sort_inline_arrays = true
sort_table_keys = true
spaces_before_inline_comment = 2
spaces_indent_inline_array = 4
trailing_comma_inline_array = true