-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
83 lines (75 loc) · 1.54 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
82
83
[tool.pdm.build]
includes = []
[[tool.pdm.source]]
name = "pypi"
url = ""
verify_ssl = false
[[tool.pdm.source]]
name = "nvidia"
url = "https://pypi.nvidia.com"
verify_ssl = true
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.black]
line-length = 119
target-version = ['py311']
extend-exclude = '''
.*/migrations/0[0-9]{3}_.+\.py
'''
[tool.isort]
src_paths = ["backend", "scripts_and_examples/import_scripts"]
profile = "black"
[project]
authors = [
{name = "Tim Henning", email = "tim@luminosuslight.de"},
]
requires-python = "<3.12,<4.0.0,>=3.11.0"
dependencies = [
"beautifulsoup4",
"cachetools",
"cbor2",
"cohere",
"diskcache",
"django",
"django-auth-ldap",
"django-ninja",
"django-cors-headers",
"django-extensions",
"django-filter",
"django-import-export",
"django-jazzmin",
"django-svelte-jsoneditor",
"django-object-actions",
"django-prometheus",
"django-simple-history",
"djangoql",
"djangorestframework",
"drf-social-oauth2",
"hdbscan",
"llmonkey @ git+https://git@github.com/QuiddityAI/LLMonkey.git",
"markdown",
"opensearch-py",
"orjson",
"pillow",
"psycopg2-binary",
"python-box",
"qdrant-client",
"scikit-learn",
"social-auth-app-django",
"umap-learn",
"werkzeug",
"numpy<2.0",
"dspy",
]
name = "visual-data-map"
version = "0.1.0"
description = ""
readme = "README.md"
[project.optional-dependencies]
debug = ["debugpy"]
[dependency-groups]
dev = [
"viztracer",
"kolo",
]