-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
executable file
·78 lines (72 loc) · 1.8 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "dpd-db"
version = "v0.2.20250221"
description = ""
authors = [{ name = "Bodhirasa", email = "[email protected]" }]
requires-python = ">=3.11,<3.12"
readme = "README.md"
dependencies = [
"SQLAlchemy~=2.0.22",
"SQLAlchemy-Utils~=0.41.1",
"tqdm>=4.64.1,<5",
"rich>=13.3.1,<14",
"pandas>=1.5.3,<2",
"openpyxl>=3.1.0,<4",
"aksharamukha>=2.1.2,<3",
"python-idzip>=0.3.9,<0.4",
"mako>=1.2.4,<2",
"markdown>=3.4.1,<4",
"minify-html>=0.10.8,<0.11",
"pip>=23.0.1,<24",
"pyspellchecker>=0.7.1,<0.8",
"beautifulsoup4>=4.11.2,<5",
"nltk>=3.8.1,<4",
"pyperclip>=1.8.2,<2",
"css-html-js-minify>=2.5.5,<3",
"html2text>=2020.1.16,<2021",
"openai>=1.54.4,<2",
"google-cloud-translate>=3.11.3,<4",
"python-docx>=0.8.11,<0.9",
"timeout-decorator>=0.5.0,<0.6",
"psutil>=5.9.6,<6",
"anki>=23.10.1,<24",
"jinja2>=3.1.2,<4",
"flask>=3.0.0,<4",
"flask-sqlalchemy>=3.1.1,<4",
"tomlkit>=0.12.3,<0.13",
"pyglossary>=4.6.1,<5",
"fastapi>=0.110.2,<0.111",
"uvicorn>=0.30.1,<0.31",
"unidecode>=1.3.8,<2",
"weasyprint~=62.3",
"pandoc~=2.3",
"gitpython>=3.1.43,<4",
"numpy==1.23.2",
"dbfread>=2.0.7,<3",
"dbf>=0.99.9,<0.100",
"typst==0.12.0",
"httpcore>=1.0.7,<2",
]
[dependency-groups]
dev = [
"black>=23.1.0,<24",
"flake8>=6.0.0,<7",
"bandit>=1.7.5,<2",
"pylint>=2.17.0,<3",
"pylama>=8.4.1,<9",
"icecream>=2.1.3,<3",
"pytest>=7.4.3,<8",
]
[tool.hatch.build.targets.sdist]
include = ["db"]
[tool.hatch.build.targets.wheel]
include = ["db"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "basic"
[tool.ruff]
ignore = ["E401", "E501", "E712"]
target-version = "py311"