-
-
Notifications
You must be signed in to change notification settings - Fork 355
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (84 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
100 lines (84 loc) · 1.76 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["hatchling>=1.20"]
build-backend = "hatchling.build"
[project]
name = "urlwatch"
dynamic = ["version"]
description = "urlwatch monitors webpages for you"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license = { file = "COPYING" }
authors = [
{ name = "Thomas Perl", email = "m@thp.io" }
]
dependencies = [
"minidb>=2.0.8",
"PyYAML",
"requests",
"keyring",
"platformdirs",
"lxml>=5.0.0",
"cssselect",
"colorama; platform_system == 'Windows'",
]
[project.urls]
Homepage = "https://thp.io/2008/urlwatch/"
Source = "https://github.com/thp/urlwatch"
Issues = "https://github.com/thp/urlwatch/issues"
[project.optional-dependencies]
docs = ["Sphinx"]
browser = ["playwright"]
dev = [
"pytest",
"pytest-cov",
"mypy",
"ruff",
"build",
"twine",
"pycodestyle==2.14.0",
"docutils",
]
extras = [
"jq==1.11.0",
"pdftotext==3.0.0",
"pytesseract==0.3.13",
"Pillow",
"beautifulsoup4",
"jsbeautifier",
"cssbeautifier",
]
reporters = [
"chump",
"pushbullet.py",
"matrix_client",
"markdown2",
"aioxmpp",
]
[project.scripts]
urlwatch = "urlwatch.cli:main"
[tool.hatch.version]
path = "lib/urlwatch/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/lib",
"/share",
"/docs",
"CHANGELOG.md",
"COPYING",
"update-manpages.sh",
"README.md",
]
[tool.hatch.build.targets.wheel]
packages = ["lib/urlwatch"]
[tool.hatch.build.targets.wheel.shared-data]
"share/man/man1" = "share/man/man1"
"share/man/man5" = "share/man/man5"
"share/man/man7" = "share/man/man7"
"share/urlwatch/examples" = "share/urlwatch/examples"
[tool.ruff]
line-length = 120
src = ["lib"]
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.pycodestyle]
max-line-length = 120