-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 972 Bytes
/
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
[project]
name = "scrape-and-ntfy"
version = "0.1.2"
description = "An extremely customizable web scraper with a modular notification system and persistent storage via SQLite."
authors = [
{name = "slashtechno", email = "[email protected]"},
{name = "mikeymoo5", email = "[email protected]"}
]
dependencies = [
"dataset>=1.6.2",
"loguru>=0.7.2",
"python-dotenv>=1.0.1",
"selenium>=4.21.0",
"httpx>=0.27.0",
"toml>=0.10.2",
]
requires-python = ">=3.11"
readme = "README.md"
# license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
]
keywords = ["web", "scraper", "ntfy", "webhooks", "docker"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project.scripts]
scrape-and-ntfy = "scrape_and_ntfy.__main__:main"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"ruff>=0.4.8",
]