forked from saveweb/wikiteam3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (67 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "wikiteam3"
version = "4.1.4"
description = "Tools for downloading and preserving MediaWikis. We archive MediaWikis, from Wikipedia to tiniest wikis."
license = "GPL-3.0-or-later"
# authors = ["WikiTeam Contributors"] # FIXME: it's not an valid author name
authors = ["yzqzss <[email protected]>"]
maintainers = [
# "saveweb wikiteam3 maintainers", #FIXME
# "mediawiki-scarper maintainers",
# "wikiteam maintainers",
"yzqzss <[email protected]>"
]
readme = "README.md"
# homepage = "https://wiki.archiveteam.org/index.php/WikiTeam"
repository = "https://github.com/saveweb/wikiteam3"
keywords = [
"archiveteam",
"mediawiki",
"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"
]
packages = [
{ include = "wikiteam3/**/*"},
]
exclude = ["wikiteam3/dumpgenerator/test/*"]
[tool.poetry.scripts]
dumpgenerator = "wikiteam3.dumpgenerator:main_deprecated"
wikiteam3dumpgenerator = "wikiteam3.dumpgenerator:main"
wikiteam3uploader = "wikiteam3.uploader:main"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.31.0"
internetarchive = "^3.5.0"
lxml = "^4.9.2"
mwclient = "^0.10.1"
file_read_backwards = "^3.0.0"
python-slugify = "^8.0.1"
httpx = "^0.24.1"
[tool.isort]
profile = "black"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
flake8 = "^3.9.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"