-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.03 KB
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
[project]
name = "xword-dl"
description = "CLI download tool for online crossword puzzles"
readme = "README.md"
license = "MIT"
license-files = [ "LICENSE" ]
authors = [ { name = "Parker Higgins", email = "parker@parkerhiggins.net"} ]
requires-python = ">=3.10"
dynamic = [ "version" ]
dependencies = [
"beautifulsoup4==4.13.4",
"dateparser==1.2.2",
"emoji==2.14.1",
"html2text==2025.4.15",
"lxml==6.0.0",
"puzpy==0.2.6",
"pyyaml==6.0.2",
"requests==2.32.4",
"unidecode==1.4.0",
"xmltodict==0.14.2",
]
[project.scripts]
xword-dl = "xword_dl.xword_dl:main"
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs",
"hatchling>=1.27",
]
[tool.hatch]
version.source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/xword_dl/_version.py"
[tool.hatch.version.raw-options]
version_scheme = "no-guess-dev"
[tool.ruff]
fix = true
[tool.pyright]
venvPath = "."
venv = ".venv"
typeCheckingMode = "standard"
[dependency-groups]
dev = [
"pyright>=1.1.403",
"ruff>=0.12.5",
]