-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (31 loc) · 1.05 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
[tool.poetry]
name = "carshare"
version = "0.1.0"
description = "A web based Car Share management platform."
authors = ["George Goldberg <[email protected]>"]
license = "AGPL Version 3"
[tool.poetry.dependencies]
python = "^3.12"
Django = "^5.0.2"
django-tailwind = "^3.8.0"
psycopg-binary = "^3.1.18"
black = "^24.2.0"
django-allauth = "^0.61.1"
django-crispy-forms = "^2.1"
Pillow = "^10.2.0"
requests = "^2.31.0"
psycopg2-binary = "^2.9.9"
stripe = "^8.3.0"
celery = "^5.3.6"
django-celery-results = "^2.5.1"
django-celery-beat = {git = "https://github.com/celery/django-celery-beat", rev = "f66796b9c5c9e47d118cb5b41d970f07cce72bbe"}
django-polymorphic = {git = "https://github.com/jazzband/django-polymorphic", rev = "fa6bc9f10b45fbe950e8db8af41fa3b35380d129"}
gunicorn = "^21.2.0"
django-filter = "^23.5"
django-extensions = "^3.2.3"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
django-tailwind = {extras = ["reload"], version = "^3.8.0"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"