forked from iMMAP/rh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
120 lines (112 loc) · 2.32 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[tool.poetry]
name = "report-hub"
version = "0.1.0"
description = "ReportHub by IMMAP"
authors = ["RH-Team <rh-support@immap.org>"]
license = "GPL"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
Django = "^5.0.6"
django-filter = "24.2"
Faker = "14.2.1"
python-dateutil = "2.8.2"
six = "1.16.0"
pandas = "2.2.3"
django-environ = "0.10.0"
bcrypt = "4.0.1"
openpyxl = "3.1.2"
pytest = "^7.4.0"
flake8 = "^6.0.0"
2to3 = "1.0"
asgiref = "3.8.1"
astroid = "2.12.10"
attrs = "22.1.0"
certifi = "2022.6.15.1"
charset-normalizer = "2.1.1"
dill = "0.3.5.1"
django-appconf = "1.0.5"
django-cors-headers = "3.13.0"
django-jsonform = "2.12.0"
django-jsonforms = "1.1.2"
djangorestframework = "3.13.1"
greenlet = "2.0.2"
idna = "3.3"
isort = "5.10.1"
jsonschema = "4.16.0"
lazy-object-proxy = "1.7.1"
mccabe = "0.7.0"
model-bakery = "1.7.0"
mypy-extensions = "0.4.3"
pycparser = "2.21"
pylint = "2.15.3"
pylint-django = "2.5.3"
pylint-plugin-utils = "0.7"
pyrsistent = "0.18.1"
pytz = "2022.1"
PyYAML = "6.0"
rcssmin = "1.1.1"
requests = "2.28.1"
rjsmin = "1.2.1"
sqlparse = "0.4.2"
tomli = "2.0.1"
tomlkit = "0.11.4"
typing_extensions = "4.7.0"
urllib3 = "1.26.12"
wrapt = "1.14.1"
django-vite-plugin = "^1.3.3"
platformdirs = "^3.11.0"
virtualenv = "^20.24.6"
factory-boy = "^3.3.0"
sentry-sdk = {extras = ["django"], version = "^1.39.1"}
django-htmx = "^1.17.2"
psycopg2-binary = "^2.9.9"
django-dbbackup = "^4.1.0"
dropbox = "^12.0.0"
django-storages = "^1.14.3"
django-extra-settings = "^0.12.0"
django-mdeditor = "^0.1.20"
markdown = "^3.6"
django-mailer = "^2.3.2"
gunicorn = "^23.0.0"
django-extensions = "^3.2.3"
[tool.poetry.group.dev.dependencies]
nplusone = "^1.0.0"
django-tui = "^23.9"
django-debug-toolbar = "^4.2.0"
numpy = "2.2.0"
ruff = "^0.8.3"
[tool.ruff]
# Exclude a variety of commonly ignored directories.
line-length=120
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
"scripts",
"migrations"
]
[tool.djlint]
profile="django"
blank_line_before_tag="load,extends,block"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"