-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 895 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 895 Bytes
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
[project]
name = "news-crawler"
version = "0.3.0"
description = "Search news, select sources, export to Excel with screenshots"
readme = "README.md"
license = { text = "GPL-3.0-or-later" }
requires-python = ">=3.11"
classifiers = [
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Environment :: MacOS X",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"pyside6>=6.6",
"ddgs>=9.14",
"httpx>=0.27",
"trafilatura>=1.6",
"openpyxl>=3.1",
"playwright>=1.40",
"adblock>=0.6.0",
"ai-dont-care-about-cookies>=1.1.0",
]
[project.scripts]
news-crawler = "news_crawler.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = ["pytest>=8.0", "pyinstaller>=6.0"]
[tool.hatch.build.targets.wheel]
packages = ["src/news_crawler"]