forked from WikiTeam/wikiteam
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
86 lines (80 loc) · 2.54 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[tool.poetry]
name = "wikiteam3"
version = "3.0.0"
description = "Tools for downloading and preserving wikis. We archive wikis, from Wikipedia to tiniest wikis. As of 2020, WikiTeam has preserved more than 250,000 wikis."
license = "GPL-3.0-or-later"
authors = ["WikiTeam Contributors <https://github.com/WikiTeam/wikiteam/graphs/contributors>"]
maintainers = [
"Federico Leva <https://github.com/nemobis>",
"Elsie Hupp <https://github.com/elsiehupp>"
]
readme = "README.md"
homepage = "https://wiki.archiveteam.org/index.php/WikiTeam"
repository = "https://github.com/WikiTeam/wikiteam"
documentation = "https://wikiteam.readthedocs.io"
keywords = [
"archiveteam",
"mediawiki",
"preservation",
"wiki",
"wikipedia"
]
classifiers = [
"Development Status :: 3 - Alpha",
"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"
# gui = "wikiteam3.gui:main"
launcher = "wikiteam3.launcher:main"
# not-archived = "wikiteam3.not-archived:main"
uploader = "wikiteam3.uploader:main"
# wikiadownloader = "wikiteam3.wikiadownloader:main"
# wikipediadownloader = "wikiteam3.wikipediadownloader:main"
# wikispaces = "wikiteam3.wikispaces:main"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.32.0"
internetarchive = "^3.1.0"
lxml = "^4.9.1"
mwclient = "^0.10.1"
PyMySQL = "^1.1.1"
pywikibot = "^6.6.1"
urllib3 = "^1.26.18"
wikitools3 = "^3.0.0"
pymysql = "*"
file_read_backwards = "^2.0.0"
pre-commit-poetry-export = "^0.1.2"
[tool.isort]
profile = "black"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
requests = "^2.32.0"
flake8 = "^3.9.2"
pre-commit = "^2.17.0"
pymarkdown = "^0.1.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pymarkdown]
disable-rules = "line-length,no-inline-html"