-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
Pipfile
42 lines (38 loc) · 1.24 KB
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
Babel = "*"
Django = ">=4.2.15,<4.3"
GitPython = ">=3.1.41"
PyYAML = "*"
beautifulsoup4 = "*"
certifi = ">=2023.7.22" # Ensure dependency is secure
colorlog = "*"
dealer = "*"
gitpython = ">=3.1.37" # Ensure dependency is secure
lxml = "*" # Dependency of beautifulsoup4 and RDF/XML processing
polib = "*"
python-dateutil = "*"
rdflib = "*"
transifex-python = "*"
urllib3 = ">=2.2.2" # Ensure dependency is secure
whitenoise = "*"
[dev-packages]
black = ">=24.3.0" # Sync version with [static-analysis], below
coverage = "*"
django-debug-toolbar = "*"
factory-boy = "*"
flake8 = "*" # Sync version with [static-analysis], below
isort = "*" # Sync version with [static-analysis], below
pre-commit = "*" # Sync version with [static-analysis], below
tblib = "*" # Dependency of coverage (with --parallel)
[static-analysis]
# Also see: .github/workflows/static-analysis.yml
black = ">=24.3.0" # Sync version with [dev-packages], above
flake8 = "*" # Sync version with [dev-packages], above
isort = "*" # Sync version with [dev-packages], above
pre-commit = "*" # Sync version with [dev-packages], above
[requires]
python_version = "3.11"