-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1005 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 1005 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 = "dgg-pm"
version = "0.2.2"
description = "Discord-Native Task Management Platform with Hexagonal Architecture and RFC 5545 Portability"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"discord.py>=2.4.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"sqlalchemy[asyncio]>=2.0.35",
"asyncpg>=0.29.0",
"aiosqlite>=0.20.0",
"alembic>=1.13.3",
"pydantic>=2.9.0",
"pydantic-settings>=2.5.0",
"Pillow>=10.0.0",
"pyyaml>=6.0.2",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"pytest-xdist>=3.5.0",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "RUF"]
ignore = ["B008", "RUF012", "RUF001", "RUF002", "RUF003"]