-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.25 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
[tool.poetry]
name = "acnutils"
version = "0.6.3"
description = "Various utilities used in AntiCompositeNumber's bots"
authors = ["AntiCompositeNumber <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.rst"
repository = "https://github.com/AntiCompositeNumber/acnutils"
keywords = ["pywikibot", "toolforge", "wikimedia", "wikipedia"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Typing :: Typed",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Wiki",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Environment :: Console"
]
[tool.poetry.dependencies]
python = "^3.9"
pywikibot = ">=6.6.1,<10.0.0"
toolforge = {version=">=5,<7", optional=true}
[tool.poetry.dev-dependencies]
mypy = "^1.0"
flake8 = "^7.1.0"
black = "^24.3"
pytest = "^8.2.2"
coveralls = "^3.2.0"
mwparserfromhell = "^0.6.3"
[tool.poetry.extras]
db = ["toolforge"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
source = ["acnutils"]
[tool.pytest.ini_options]
log_level = "info"
addopts = "-v"