-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 876 Bytes
/
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
[tool.poetry]
name = "anticompositetools"
# This version number doesn't do anything. Don't bother changing it.
version = "0"
description = ""
homepage = "https://anticompositetools.toolforge.org"
authors = ["Your Name <you@example.com>"]
license = "AGPL-3.0-or-later"
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = "^3.9"
toolforge = "*"
phpserialize = "*"
click = "*"
mwparserfromhell = "*"
python-stdnum = "*"
requests = "*"
pywikibot = "*"
fuzzywuzzy = "*"
Flask = "*"
PyMySQL = "*"
requests-oauthlib = "*"
python-Levenshtein = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
flake8 = "*"
coveralls = "*"
black = "*"
mypy = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
source = ["src"]
[tool.pytest.ini_options]
log_level = "info"
addopts = "-v --strict-markers"