-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
43 lines (38 loc) · 931 Bytes
/
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
[tool.poetry]
name = "rcos-io"
version = "1.1.0"
description = ""
authors = ["Frank Matranga <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "rcos_io"}]
[tool.poetry.dependencies]
python = "^3.11"
django = "^5.0.2"
gunicorn = "^23.0.0"
celery = "^5.2.7"
python-dotenv = "^1.0.0"
sentry-sdk = "^2.0.0"
whitenoise = "^6.4.0"
markdownify = "^0.13.0"
django-markdownify = "^0.9.3"
django-magiclink = "^1.2.0"
django-anymail = "^10.0"
django-crispy-forms = "^2.0"
crispy-bulma = "^0.11.0"
django-debug-toolbar = "^4.3.0"
gql = "^3.4.1"
requests-toolbelt = "^1.0.0"
psycopg2-binary = "^2.9.6"
redis = "^5.0.0"
dnspython = "^2.3.0"
eventlet = "^0.38.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.7.0"
faker = "^33.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = ["E", "W", "F", "I", "UP", "RUF"]
ignore = ["E501", "RUF012"]