Merge branch 'master' of gitea.tfconsulting.com.au:projects/polyphonic

This commit is contained in:
Tris Forster 2025-08-29 11:39:58 +10:00
commit ee5305ba6c
5 changed files with 36 additions and 8 deletions

1
.gitignore vendored
View File

@ -6,6 +6,7 @@ credentials.json
credentials
local_settings.py
.coverage
Session.vim
/env
/data
/old

View File

@ -5,7 +5,6 @@ from django.db import models
from django.utils.text import slugify
from django.utils.timezone import now
from django.utils.functional import cached_property
from django.core.files.storage import get_storage_class
from django.db.models import Q, Count, Min, Max
import re

View File

@ -1,7 +1,7 @@
from .default_settings import *
try:
from .local_settings import *
except ImportError:
from .default_settings import *
pass
INSTALLED_APPS += POLYPHONIC_MODULES
INSTALLED_APPS += POLYPHONIC_MODULES

View File

@ -1,12 +1,11 @@
asgiref==3.4.1
asgiref==3.8.1
boto3==1.18.34
botocore==1.21.34
certifi==2022.12.7
charset-normalizer==2.1.1
crispy-bulma==0.8.0
Django==3.2.7
#-e git+ssh://git@gitea.tfconsulting.com.au/tris/django-byostorage.git@227ce5fccb5864657f080c25528263b655c2b6b7#egg=django_byostorage
git+https://gitea.tfconsulting.com.au/tris/django-byostorage.git
Django==5.1
django-byostorage @ git+https://gitea.tfconsulting.com.au/tris/django-byostorage.git@9903bb00888f20dfd2d39754e5ee22eeb5f36298
django-crispy-forms==1.14.0
django-markdown2==0.3.1
django-rest-framework==0.1.0
@ -14,11 +13,14 @@ django-storages==1.13.1
django_debug_toolbar==3.8.1
djangorestframework==3.14.0
djantic==0.7.0
greenlet==3.0.3
idna==3.4
jmespath==0.10.0
markdown2==2.4.1
msgpack==1.0.8
pydantic==1.10.2
pydantic-django==0.1.1
pynvim==0.5.0
python-dateutil==2.8.2
pytz==2021.1
requests==2.28.1

26
pyproject.toml Normal file
View File

@ -0,0 +1,26 @@
[project]
name = "polyphonic"
version = "0.1.0"
description = "Polyphonic Ensemble Manager"
authors = [
{name = "Tris Forster",email = "tris@tfconsulting.com.au"}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"django (==5.1)",
"django-crispy-forms",
"django-markdown2",
"django-rest-framework",
"crispy-bulma (>=0.12.0,<0.13.0)"
]
[tool.poetry]
packages = [{include = "*", from="app"}]
[tool.poetry.group.dev.dependencies]
django-debug-toolbar = "3.8.1"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"