forked from alexz-enwp/wikitools
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
30 lines (28 loc) · 1.12 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
[tool.poetry]
name = "wikitools3"
version = "3.0.1"
description = "Python package for interacting with a MediaWiki wiki. It is used by WikiTeam for archiving MediaWiki wikis."
authors = ["Alex Zaddach <[email protected]>", "Elsie Hupp <[email protected]>"]
maintainers = ["Elsie Hupp <[email protected]>"]
readme = "README.md"
repository = "https://github.com/elsiehupp/wikitools3"
keywords = ["wikipedia", "mediawiki", "archive", "scrape", "archiveteam"]
license = "GPL-3.0-or-later"
include = ["CHANGELOG.md"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Wiki",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
poster3 = "^0.8.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"