-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 957 Bytes
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 957 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
45
46
[project]
name = "entari-plugin-database"
version = "0.3.1"
description = "Entari plugin for SQLAlchemy ORM"
authors = [
{name = "RF-Tar-Railt", email = "rf_tar_railt@qq.com"},
]
dependencies = [
"sqlalchemy>=2.0.42",
"aiosqlite>=0.21.0",
"graia-amnesia>=0.11.4",
"tarina<0.8.0,>=0.7.1",
"arclet-letoderea>=0.19.5",
"alembic>=1.16.5",
"arclet-entari<0.19.0,>=0.18.0rc1",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.ruff]
line-length = 120
target-version = "py310"
include = ["src/**.py"]
[tool.ruff.lint]
select = ["E", "W", "F", "UP", "C", "T", "PYI", "PT", "Q"]
ignore = ["C901", "T201", "E731", "E402", "PYI055", "UP038"]
[tool.pyright]
pythonVersion = "3.10"
pythonPlatform = "All"
typeCheckingMode = "basic"
[dependency-groups]
dev = [
"arclet-entari[full]>=0.17.0",
]