-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
69 lines (66 loc) · 1.56 KB
/
Copy pathBUILD
File metadata and controls
69 lines (66 loc) · 1.56 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
__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"],
"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"],
"Mastodon.py": ["mastodon"],
"pylint-django": ["pylint_django"],
"pylint-plugin-utils": ["pylint_plugin_utils"],
"PyJWT": ["jwt"],
"psycopg": ["psycopg"],
"psycopg-binary": ["psycopg"],
"py-ubjson": ["ubjson"],
"python-dotenv": ["dotenv"],
"qdrant-client": ["qdrant_client"],
"taskiq-aio-pika": ["taskiq_aio_pika"],
"taskiq-redis": ["taskiq_redis"],
"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",
)