-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.3 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ww"
version = "0.1.0"
description = "A cross-platform CLI toolkit for personal and enterprise automation, with LLM integration."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"requests>=2.32.0",
"pyperclip>=1.8.0",
"markdown>=3.5.0",
"beautifulsoup4>=4.12.0",
"readability-lxml>=0.8.1",
"lxml>=5.0.0",
"Pillow>=10.0.0",
"pyobjc-framework-Quartz>=9.0; sys_platform == 'darwin'",
"pypdf>=4.0.0",
"pdf2image>=1.16.0",
"numpy>=1.24.0",
"python-dotenv>=1.0.0",
"google-genai>=1.0.0",
"chardet>=5.0.0",
"tavily-python>=0.5.0",
]
[project.scripts]
ww = "ww.main:main"
[tool.pyright]
pythonVersion = "3.8"
typeCheckingMode = "basic"
reportMissingImports = true
reportMissingModuleSource = false
reportAttributeAccessIssue = false
exclude = [
".venv/",
]
[tool.ruff.lint]
ignore = [
"E731", # lambda assignments — used intentionally as prompt builders
"E722", # bare except — intentional in network/system code
"F841", # unused local variable
]
[tool.ruff.lint.per-file-ignores]
"ww/search/*.py" = ["E402"] # warnings.filterwarnings must precede imports
"ww/mmlu/*.py" = ["E402"]
"ww/networkx/*.py" = ["E402"]
"ww/social/*.py" = ["E402"]