-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.41 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
[build-system]
requires = ["uv_build>=0.8.17"]
build-backend = "uv_build"
[project]
name = "weekendwordle"
version = "1.1.0"
description = "WeekendWordle is a Python framework and TUI built to find near-optimal guesses for the modern, New York Times version of Wordle."
readme = "README.md"
license-files = ["LICEN[CS]E.*", "LICEN[CS]ES/*"]
license = "MIT"
requires-python = ">=3.13.5"
authors = [{name="Benjamin Saunders", email="bengsaunders@gmail.com"}]
dependencies = [
"beautifulsoup4>=4.13.4",
"matplotlib>=3.10.3",
"nltk>=3.9.1",
"numba>=0.61.2",
"numpy>=2.2.6",
"pandas>=2.3.1",
"plotly>=6.2.0",
"pyfiglet>=1.0.4",
"pyperclip>=1.11.0",
"requests>=2.32.4",
"scikit-learn>=1.7",
"spacy>=3.8.7",
"textual>=5.3.0",
"textual-dev>=1.7.0",
"textual-pyfiglet>=1.1.0",
"tqdm>=4.67.1",
"wordfreq>=3.1.1",
]
[dependency-groups]
dev = [
"xgboost>=3.0.2",
"lightgbm>=4.6.0",
"en-core-web-lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.8.0/en_core_web_lg-3.8.0-py3-none-any.whl"
]
[project.scripts]
weekendwordle = "weekendwordle.gui.wordle_app:run_gui"
weekendwordle_cli = "weekendwordle.backend.cli_app:run_cli"
[project.urls]
"Homepage" = "https://github.com/flyingfaller/WeekendWordleBot"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true