-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
37 lines (33 loc) · 893 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
[project]
name = "github-wikidata-bot"
version = "0.4.0"
requires-python = ">=3.12"
license = "BSD-2-Clause-Patent"
description = "Updates Wikidata entries using metadata from github"
authors = [
{ name = "konstin", email = "konstin@mailbox.org" },
{ name = "Michael Schönitzer", email = "michael@schoenitzer.de" },
]
dependencies = [
"CacheControl[filecache] >=0.14,<0.15",
"mwparserfromhell >=0.6.4,<0.7",
"pydantic >=2.7.1",
"pywikibot >=9.1.2,<10",
"sentry-sdk >=2.0.1,<3",
"yarl >=1.9,<2",
]
[tool.uv]
dev-dependencies = [
"httpx >=0.28.0,<0.29",
"pytest >=8.0.0,<9",
"ruff >=0.8.1,<0.9",
"tqdm >=4.66.4,<5",
"types-requests >=2.31.0.20240406,<3",
]
[tool.ruff.lint]
extend-select = ["B", "PT", "PTH", "TRY", "UP"]
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"