-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (43 loc) · 1003 Bytes
/
pyproject.toml
File metadata and controls
44 lines (43 loc) · 1003 Bytes
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
[project]
name = "spoo-me"
version = "1.0.0"
description = "Open-Source URL Shortener Written in Flask"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"argon2-cffi>=25.1.0",
"authlib>=1.6.5",
"crawlerdetect>=0.3.0",
"dicttoxml>=1.7.16",
"emoji>=2.14.1",
"flask>=3.1.1",
"flask-caching>=2.3.1",
"flask-cors>=6.0.0",
"flask-limiter[mongodb]>=3.11.0",
"geoip2>=5.1.0",
"gunicorn>=23.0.0",
"openpyxl>=3.1.5",
"pycountry>=24.6.1",
"pyjwt[crypto]>=2.10.1",
"pymongo>=4.13.0",
"python-dotenv>=1.1.0",
"redis>=6.2.0",
"regex>=2026.1.15",
"requests>=2.32.3",
"sentry-sdk[flask]>=2.44.0",
"structlog>=25.5.0",
"tldextract>=5.3.0",
"ua-parser[regex]>=1.0.1",
"validators>=0.35.0",
"walrus>=0.9.8",
]
[dependency-groups]
dev = [
"mongomock>=4.3.0",
"pytest>=8.3.5",
"pytest-flask>=1.3.0",
"pytest-mock>=3.14.1",
"requests-mock>=1.12.1",
"ruff>=0.11.11",
"uv>=0.9.6",
]