Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
root = true

[*]
indent_style = space
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8

[*.py]
indent_size = 4
max_line_length = 100

[*.html]
indent_size = 2

[*.css]
indent_size = 2

[{*.yml,*.yaml}]
indent_size = 2

[*.ini]
indent_size = 4

[*.sh]
indent_size = 2

[*.{js,jsx,ts,tsx,vue}]
indent_size = 2
max_line_length = 100
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
4f68c0949ed4a63ec0cf33d090a1d21ec76bd7d2
# Format
e96c4259a70b8152903ba461bb955f32e89bd229
# Fix `pyproject.toml` indentation
83d5640865392f1d24cb676f9fe0265e7f90413e
7 changes: 0 additions & 7 deletions client/.editorconfig

This file was deleted.

90 changes: 45 additions & 45 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,55 +10,55 @@ license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
classifiers = ["Private :: Do Not Upload"]
dependencies = [
# Runtime dependendencies, always needed
"celery",
"django[argon2]",
"django-ninja",
"django-allauth",
"django-auth-style",
"django-cors-headers",
"django-environ",
"django-extensions",
"django-oauth-toolkit",
"django-resonant-settings[allauth,celery]",
"django-resonant-utils[allauth,s3_storage]",
"django-s3-file-field[s3]",
"django-storages[s3]",
"django-stubs-ext",
"psycopg[binary]",
"pydantic",
"rich",
"whitenoise[brotli]",
# Spectrogram Generation
"numpy",
# "onnxruntime-gpu",
"onnx",
"onnxruntime",
"tqdm",
# guano metadata
"gdal",
"guano",
"django_celery_results",
# Production-only
"sentry-sdk[celery,django,pure_eval]",
"gunicorn",
"geopandas>=1.1.1",
"batbot",
"scikit-image>=0.25.2",
# Runtime dependendencies, always needed
"celery",
"django[argon2]",
"django-ninja",
"django-allauth",
"django-auth-style",
"django-cors-headers",
"django-environ",
"django-extensions",
"django-oauth-toolkit",
"django-resonant-settings[allauth,celery]",
"django-resonant-utils[allauth,s3_storage]",
"django-s3-file-field[s3]",
"django-storages[s3]",
"django-stubs-ext",
"psycopg[binary]",
"pydantic",
"rich",
"whitenoise[brotli]",
# Spectrogram Generation
"numpy",
# "onnxruntime-gpu",
"onnx",
"onnxruntime",
"tqdm",
# guano metadata
"gdal",
"guano",
"django_celery_results",
# Production-only
"sentry-sdk[celery,django,pure_eval]",
"gunicorn",
"geopandas>=1.1.1",
"batbot",
"scikit-image>=0.25.2",
]

[project.optional-dependencies]
development = [
"django-browser-reload",
"django-click",
"django-debug-toolbar",
"django-minio-storage",
"django-resonant-utils[minio_storage]",
"django-s3-file-field[minio]",
"faker",
"ipython",
"watchdog",
"werkzeug",
"django-browser-reload",
"django-click",
"django-debug-toolbar",
"django-minio-storage",
"django-resonant-utils[minio_storage]",
"django-s3-file-field[minio]",
"faker",
"ipython",
"watchdog",
"werkzeug",
]

[dependency-groups]
Expand Down
Loading