-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.18 KB
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
[tool.poetry]
name = "pywikicli"
version = "0.1.11"
description = "A CLI tool to interact with MediaWiki via its API"
authors = ["vilosource <viloforge@outlook.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/vilosource/wikibot"
homepage = "https://github.com/vilosource/wikibot"
keywords = ["mediawiki", "wiki", "cli", "bot", "python"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
packages = [
{ include = "pywikicli" }
]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
requests = "^2.28.0"
PyYAML = "^6.0"
pypandoc = "^1.15"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
black = "^23.0.0"
isort = "^5.10.0"
[tool.poetry.scripts]
wikibot = "pywikicli.cli:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"