add prod/dev configurations

This commit is contained in:
2025-09-07 16:43:37 -07:00
parent f4095cc0cb
commit 6610b9c196
10 changed files with 217 additions and 16 deletions

View File

@@ -12,7 +12,6 @@ dependencies = [
"scikit-learn>=1.3.2",
"dash-bootstrap-components>=1.5.0",
"umap-learn>=0.5.8",
"numba>=0.56.4",
"openTSNE>=1.0.0",
"mypy>=1.17.1",
"opensearch-py>=3.0.0",
@@ -32,11 +31,14 @@ security = [
"safety>=2.3.0",
"pip-audit>=2.6.0",
]
prod = [
"gunicorn>=21.2.0",
]
dev = [
"embeddingbuddy[test,lint,security]",
]
all = [
"embeddingbuddy[test,lint,security]",
"embeddingbuddy[test,lint,security,prod]",
]
[build-system]