-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (54 loc) · 1.59 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
[tool.poetry]
name = "regtech-cleanup-api"
version = "0.1.0"
description = "Regtech Cleanup API"
authors = ["jmcguffee <justin.mcguffee@cfpb.gov>"]
readme = "README.md"
packages = [{ include = "regtech_cleanup_api", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.12,<4"
sqlalchemy = "^2.0.31"
regtech-api-commons = {git = "https://github.com/cfpb/regtech-api-commons.git"}
sbl-filing-api = {git = "https://github.com/cfpb/sbl-filing-api.git"}
regtech-user-fi-management = {git = "https://github.com/cfpb/regtech-user-fi-management.git"}
boto3 = "^1.34.149"
black = "^24.8.0"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14"
[tool.poetry.group.linters.dependencies]
ruff = "0.5.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
env = [
"AUTH_CLIENT=regtech-client",
"AUTH_URL=http://localhost",
"CERTS_URL=http://localhost",
"DB_HOST=localhost:5432",
"DB_NAME=filing",
"DB_PWD=filing_user",
"DB_SCHEMA=filing",
"DB_USER=filing_user",
"FS_UPLOAD_CONFIG__PROTOCOL=file",
"FS_UPLOAD_CONFIG__ROOT=../upload",
"INST_DB_HOST=localhost:5432",
"INST_DB_NAME=financial_institutions",
"INST_DB_PWD=fi",
"INST_DB_SCHEMA=public",
"INST_DB_USER=fi",
"JWT_OPTS_VERIFY_AT_HASH=false",
"JWT_OPTS_VERIFY_AUD=false",
"JWT_OPTS_VERIFY_ISS=false",
"KC_ADMIN_CLIENT_ID=admin-cli",
"KC_ADMIN_CLIENT_SECRET=local_test_only",
"KC_REALM=regtech",
"KC_REALM_URL=http://localhost",
"KC_URL=http://localhost:8880",
"TOKEN_URL=http://localhost"
]