-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (40 loc) · 1.28 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
[tool.poetry]
name = "gbif-alert"
version = "1.7.7"
description = "A GBIF-based early alert system"
authors = ["Nicolas Noé <[email protected]>"]
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
Django = "^4.2.4"
psycopg2-binary = "^2.9.1"
requests = "^2.26.0"
gbif-blocking-occurrence-download = "^0.1.0"
python-dwca-reader = "^0.16.4"
jinjasql = "^0.1.8"
django-crispy-forms = "^2.1"
crispy-bootstrap5 = "2024.2"
django-maintenance-mode = "0.21.1"
django-import-export = "^3.2.0"
django-cors-headers = "^4.2.0"
django-markdownx = "^4.0.2"
django-rq = "^2.5.1"
html2text = "2024.2.25"
Jinja2 = "3.0.3" # just needed for JinjaSQL, but it currently has a tendency to download an incompatible version (3.1.1). I hope we'll be able to remove that fake dependency once JinjaSQL gets updated (https://github.com/sripathikrishnan/jinjasql/issues/50)
django-taggit = "^5.0.1"
django-modeltranslation = "^0.18.9"
python-dotenv = "^1.0.0"
django-gisserver = "^1.2.7"
[tool.poetry.group.dev.dependencies]
selenium = "^4.11.2"
mypy = "1.4"
django-stubs = "4.2.3"
types-requests = "^2.28.11.15"
black = "^23.1.0"
mapbox-vector-tile = "^2.0.1"
gunicorn = "^20.1.0"
requests-mock = "^1.10.0"
tblib = "^1.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"