forked from mediawiki-client-tools/mediawiki-dump-generator
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
52 lines (47 loc) · 1.96 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
47
48
49
50
51
52
[project]
# PEP 621 project metadata
# See https://www.python.org/dev/peps/pep-0621/
name = "wikiteam3"
version = "4.4.0"
description = "Tools for downloading and preserving MediaWikis. We archive MediaWikis, from Wikipedia to tiniest wikis."
license = {text = "GPL-3.0-or-later"}
requires-python = "<4.0.0,>=3.8.1"
dependencies = [
"requests<3.0.0,>=2.32.3",
"internetarchive<5.0.0,>=4.1.0",
"lxml<6.0.0,>=5.2.2",
"mwclient<1.0.0,>=0.10.1",
"file-read-backwards<4.0.0,>=3.1.0",
"python-slugify<9.0.0,>=8.0.4",
]
readme = "README.md"
keywords = ["archiveteam", "mediawiki", "wikiteam", "wikiteam3", "preservation", "wiki", "wikipedia"]
classifiers = ["Environment :: Console", "Intended Audience :: Education", "Intended Audience :: End Users/Desktop", "Intended Audience :: Information Technology", "Intended Audience :: Legal Industry", "Intended Audience :: Science/Research", "Intended Audience :: System Administrators", "Natural Language :: English", "Operating System :: OS Independent", "Topic :: Communications", "Topic :: Internet", "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Wiki", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Sociology :: History", "Topic :: System :: Archiving", "Topic :: System :: Archiving :: Backup", "Topic :: Utilities"]
authors = [
{name = "yzqzss", email = "[email protected]"},
{name = "emijrp"},
{name = "nemobis"},
{name = "randomnetcat"},
{name = "NyaMisty"},
{name = "PiRSquared17"},
{name = "Hydriz"},
]
maintainers = [
{name = "yzqzss", email = "[email protected]"},
]
[project.scripts]
wikiteam3dumpgenerator = "wikiteam3.dumpgenerator:main"
wikiteam3uploader = "wikiteam3.uploader:main"
[project.urls]
repository = "https://github.com/saveweb/wikiteam3"
[tool.pdm]
[tool.pdm.build]
excludes = []
[tool.pdm.dev-dependencies]
dev = [
"pytest<9.0.0,>=8.2.2",
"flake8<8.0.0,>=7.1.0",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"