-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
73 lines (70 loc) · 1.82 KB
/
BUILD
File metadata and controls
73 lines (70 loc) · 1.82 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
__defaults__(
{
(python_test_utils, python_tests): {
"dependencies": [
"//:python",
"//content",
"//core",
"//digest_engine",
"//digest_engine/settings",
"//entities",
"//ingestion",
"//messaging",
"//newsletters",
"//notifications",
"//pipeline",
"//projects",
"//trends",
"//users",
],
},
}
)
python_requirements(
name="python",
source="pyproject.toml",
module_mapping={
"dj-database-url": ["dj_database_url"],
"dj-rest-auth": ["dj_rest_auth"],
"django-allauth": ["allauth"],
"django-anymail": ["anymail"],
"django-cors-headers": ["corsheaders"],
"django-import-export": ["import_export"],
"django-storages": ["storages"],
"django-stubs-ext": ["django_stubs_ext"],
"django-unfold": ["unfold"],
"djangochannelsrestframework": ["djangochannelsrestframework"],
"djangorestframework": ["rest_framework"],
"djangorestframework-simplejwt": ["rest_framework_simplejwt"],
"drf-nested-routers": ["rest_framework_nested"],
"drf-spectacular": ["drf_spectacular"],
"drf-standardized-errors": ["drf_standardized_errors"],
"Mastodon.py": ["mastodon"],
"pylint-django": ["pylint_django"],
"pylint-plugin-utils": ["pylint_plugin_utils"],
"psycopg": ["psycopg"],
"psycopg-binary": ["psycopg"],
"py-ubjson": ["ubjson"],
"python-dotenv": ["dotenv"],
"qdrant-client": ["qdrant_client"],
"sentence-transformers": ["sentence_transformers"],
"types-Deprecated": ["Deprecated"],
"types-psycopg2": ["psycopg2"],
"types-python-dateutil": ["dateutil"],
"types-pyyaml": ["yaml"],
"types-requests": ["requests"],
"uuid-utils": ["uuid_utils"],
},
type_stubs_module_mapping={
"django-stubs": ["django"],
},
overrides={
"django-types": {"modules": ["django_types"]},
},
)
python_sources(
name="root",
)
python_test_utils(
name="test_utils0",
)