-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.27 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
[project]
name = "sonamute"
version = "0.2.0"
description = "Taking Toki Pona statements and turning it into frequency information."
authors = [
{ name = "Gregory Danielson", email = "[email protected]" },
]
dependencies = [
"sonatoki>=0.11.0",
"orjson>=3.10.3",
"edgedb>=1.9.0",
"pydantic>=2.7.1",
"async-lru>=2.0.4",
"sqlalchemy[asyncio]>=2.0.31",
"sqlalchemy-utils>=0.41.2",
"aiosqlite>=0.20.0",
"python-dotenv>=1.0.1",
"rich>=13.7.1",
"beautifulsoup4>=4.12.3",
"lxml>=5.3.0",
"pyyaml>=5.1.0",
"python-frontmatter>=1.1.0",
]
requires-python = ">=3.11"
readme = "README.md"
license = { text = "AGPL-3.0-or-later" }
[tool.pdm]
distribution = true
[tool.isort]
length_sort = "1"
profile = "black"
sections = "STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
import_heading_stdlib = "STL"
import_heading_thirdparty = "PDM"
import_heading_firstparty = "LOCAL"
import_heading_localfolder = "FILESYSTEM"
[tool.pyright]
include = ["src/", "tests/"]
exclude = ["**/__pycache__", "**/__pypackages__", "**/.venv"]
venvPath = "."
venv = ".venv"
executionEnvironments = [{ root = "." }]
[tool.ruff]
line-length = 88
src = ["src"]
[dependency-groups]
dev = [
"snakeviz>=2.2.0",
"ipython>=8.26.0",
"pytest>=8.2.2",
"pytest-asyncio>=0.23.7",
"yappi>=1.6.10",
]