-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (32 loc) · 1.07 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
[tool.poetry]
name = "wikibase-rest-api-client"
version = "0.2.1"
description = "A client library for accessing the Wikibase REST API"
authors = ["Daniel Erenrich <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "wikibase_rest_api_client" }]
include = ["CHANGELOG.md", "wikibase_rest_api_client/py.typed"]
classifiers = ["Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Wiki"]
keywords = ["wikibase", "wikidata", "rest-api", "client"]
[tool.poetry.urls]
Homepage = "https://github.com/derenrich/wikibase-rest-api-client"
Repository = "https://github.com/derenrich/wikibase-rest-api-client.git"
Issues = "https://github.com/derenrich/wikibase-rest-api-client/issues"
[tool.poetry.dependencies]
python = "^3.8"
httpx = ">=0.20.0,<0.28.0"
attrs = ">=21.3.0"
python-dateutil = "^2.8.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.9"
pytest = "^7.4.4"
mypy = "^1.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
lint.select = ["F", "I"]
line-length = 120
[tool.mypy]
exclude = ["tests"]