-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (43 loc) · 1.17 KB
/
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
40
41
42
43
44
45
46
[project]
name = "ingest-wikimedia"
version = "0.2.0"
description = "Uploading media from DPLA to Wikimedia Commons"
authors = [
{ name = "Scott Williams", email = "[email protected]" },
{ name = "Michael Della Bitta", email = "[email protected]" },
{ name = "Dominic Byrd-McDevitt", email = "[email protected]" },
]
license = { text = "MIT License" }
classifiers = ["Private :: Do Not Upload"]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"beautifulsoup4>=4.12.3",
"boto3-stubs[essential]>=1.35.49",
"boto3>=1.35.49",
"certifi>=2024.8.30",
"click>=8.1.7",
"pip-system-certs>=4.0",
"python-magic>=0.4.27",
"pywikibot>=9.4.1",
"requests>=2.32.3",
"tqdm>=4.67.0",
"validators>=0.34.0",
]
[dependency-groups]
dev = [
"coverage>=7.6.9",
"mypy>=1.13.0",
"pytest>=8.3.3",
"types-requests>=2.32.0.20241016",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
uploader = "tools.uploader:main"
downloader = "tools.downloader:main"
sign = "tools.sign:main"
nuke = "tools.nuke:main"
get-ids-api = "tools.get_ids_api:main"
get-incomplete-items = "tools.get_incomplete_items:main"