-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 892 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
[tool.poetry]
name = "inaturalistreviewer"
# This version number is ignored
version = "0"
description = ""
authors = ["AntiCompositeNumber"]
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
python = "~3.11"
requests = "*"
pywikibot = "^9.1.3"
requests-oauthlib = "*"
mwparserfromhell = "*"
Pillow = "*"
waybackpy = "^3.0.6"
ImageHash = "*"
click = "!=8.1.4" # https://github.com/pallets/click/issues/2558
acnutils = {extras = ["db"], version = "^0.6.2"}
[tool.poetry.dev-dependencies]
flake8 = "*"
pytest = "*"
coveralls = "*"
mypy = "*"
black = "*"
types-requests = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_level = "info"
addopts = "-v --strict-markers"
markers = [
"ext_web: marks tests that make HTTP connections outside of Wikimedia"
]
[tool.coverage.run]
branch = true
source = ["src"]