-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.03 KB
/
pyproject.toml
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
[tool.poetry]
name = "spectrum"
version = "0.1.0"
description = "A database of shared resources"
authors = ["Neil Munro (NMunro)"]
[tool.poetry.dependencies]
python = "^3.11"
django = "^4.2.3"
django-money = "^3.2.0"
pillow = "^10.3.0"
django-crispy-forms = "^2.3"
crispy-bootstrap5 = "^2024.10"
whitenoise = "^6.5.0"
python-decouple = "^3.8"
dj-database-url = "^2.0.0"
gunicorn = "^23.0.0"
django-phone-field = "^1.8.1"
psycopg = { version = ">=3.1", extras = ["binary"] }
cron-validator = "^1.0.8"
cron-converter = "^1.0.2"
poetry-plugin-export = "^1.7.0"
django-taggit = "^6.1.0"
django-sendgrid-v5 = "^1.2.3"
python-dateutil = "^2.9.0.post0"
django-cookie-consent = "^0.6.0"
[tool.poetry.dev-dependencies]
coverage = "^7.6"
isort = "^5.10"
black = "^24.10"
sphinx = "^8.1"
factory-boy = "^3.3.1"
flake8 = "^7.0.0"
mypy = "^1.12.1"
django-stubs-ext = "^5.1.0"
python-lsp-server = "^1.12.0"
pylsp-mypy = "^0.6.9"
python-lsp-isort = "^0.2"
python-lsp-black = "^2.0.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"