-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (70 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
81 lines (70 loc) · 1.72 KB
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
78
79
80
81
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool]
[tool.isort]
combine_as_imports = true
known_first_party = ["palace"]
known_third_party = ["alembic"]
profile = "black"
[tool.poetry]
authors = ["The Palace Project <info@thepalaceproject.org>"]
description = "The Palace Project library registry"
homepage = "https://thepalaceproject.org"
license = "Apache-2.0"
name = "palace.registry"
packages = [{include = "palace/registry", from = "src"}]
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.16"
bcrypt = "5.0.0"
boto3 = "^1.26.90"
feedparser = "*"
Flask = "^3.0.0"
Flask-Babel = "4.0.0"
Flask-Bcrypt = "*"
GeoAlchemy2 = "*"
gunicorn = "*"
levenshtein = "^0.27"
loggly-python-handler = "*"
lxml = "*"
maxminddb-geolite2 = "*"
Pillow = "*"
pycryptodome = "*"
PyJWT = "*"
python = ">=3.12,<4"
requests = "2.33.1"
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 = "^4.5"
tox = "^4.4"
tox-docker = "^5.0"
tox-gh-actions = "^3.0"
[tool.poetry.group.dev.dependencies]
psycopg2-binary = "~2.9.5"
pytest = "^9"
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