forked from ICEDTEACTF/CTFeed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (36 loc) · 814 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (36 loc) · 814 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
[project]
name = "ctfeed"
version = "0.1.0"
description = "Discord bot for tracking CTF events from CTFtime"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"py-cord>=2.4.1",
"aiohttp>=3.9.0",
"python-dotenv>=1.0.0",
"asyncio-throttle>=1.0.2",
"pytz>=2023.3",
"audioop-lts>=0.2.2",
"sqlalchemy>=2.0.45",
"aiosqlite>=0.22.1",
"pydantic-settings>=2.12.0",
"fastapi>=0.128.0",
"uvicorn>=0.40.0",
"asyncpg>=0.31.0",
"itsdangerous>=2.2.0",
"httpx>=0.28.1",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-mock>=3.15.1",
"authlib>=1.6.6",
"alembic>=1.18.5",
]
[dependency-groups]
dev = [
"ruff>=0.1.0",
"mypy>=1.0.0",
"bandit>=1.7.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"