-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
90 lines (80 loc) · 1.9 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
[project]
name = "bustimes.org"
[tool.poetry]
name = "bustimes.org"
version = "0.1.0"
description = ""
authors = ["Josh Goodwin <[email protected]>"]
package-mode = false
[tool.poetry.dependencies]
python = "<3.14,>=3.11"
beautifulsoup4 = "^4.12.1"
boto3 = "^1.18.42"
ciso8601 = "^2.2.0"
dj-database-url = "^2.0.0"
Django = "^5.0.1"
django-autoslug = "^1.9.8"
django-email-obfuscator = "^0.1.5"
django-filter = "^24.1"
# django-multidb-router = "^0.10"
djangorestframework = "^3.14.0"
django-simple-history = "^3.0.0"
django-sql-utils = "^0.7.0"
django-template-minifier = "^1.1.0"
gtfs-realtime-bindings = "^1.0.0"
gunicorn = "^23.0.0"
haversine = "^2.5.1"
huey = "^2.4.3"
protobuf = "^5.26.0"
psycopg = "^3.1.8"
PyYAML = "^6.0.0"
redis = "^5.0.0"
sentry-sdk = {extras = ["django"], version = "^2.4.0"}
titlecase = "^2.3"
uk-postcode-utils = "^1.1"
webcolors = "^24.6.0"
whitenoise = "^6.2.0"
xmltodict = "^0.14.1"
django-cors-headers = "^4.2.0"
pygments = "^2.15.1"
django-turnstile = "^0.1.0"
tenacity = "^9.0.0"
lxml = "^5.0.0"
qrcode = "^8.0"
lightningcss = "^0.2.0"
jinja2 = "^3.1.4"
requests = "^2.32.3"
numpy = "^1.26"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
asgiref = "^3.4.1"
Shapely = "^2.0.1"
gtfs-kit = "^10.0.0"
websockets = "^14.0"
requests-toolbelt = "^1.0.0"
time-machine = "^2.4.0"
vcrpy = "^7.0.0"
django-slowtests = "^1.1.1"
fakeredis = "^2.12.1"
tblib = "^3.0.0"
coverage = "^7.6.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
django-debug-toolbar = "^5.0.0"
django-debug-toolbar-force = "^0.2"
django-debug-toolbar-template-profiler = "^2.1.0"
ipdb = "^0.13.9"
ipython = "^8.5.0"
uritemplate = "^4.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
relative_files = true
omit = ["*/migrations/*"]
[tool.ruff]
unsafe-fixes = true
[tool.ruff.lint]
select = ["SIM117", "F401"]