-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
54 lines (48 loc) · 1.28 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
49
50
51
52
53
54
[tool.poetry]
name = "dripostal"
version = "0.1.1"
description = "A tiny API client for the Pelias Libpostal REST service."
license = "MIT"
authors = ["Dribia Data Research <opensource@dribia.com>"]
maintainers = [
"Nabil Kakeh <nabil@dribia.com>",
"Albert Iribarne <iribarne@dribia.com>",
]
readme = "README.md"
homepage = "https://dribia.github.io/dripostal"
repository = "https://github.com/dribia/dripostal"
documentation = "https://dribia.github.io/dripostal"
[tool.poetry.dependencies]
python = ">=3.6.2,<4.0"
importlib-metadata = {version = ">=1.0, <5.0", python = "<3.8"}
pydantic = "^1.8.2"
aiohttp = {version = "^3.7.4", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
pytest-cov = "^4.0.0"
toml = "^0.10.2"
coverage-badge = "^1.0.1"
pytest-mock = "^3.5.1"
pre-commit = "^2.13.0"
mypy = "0.971"
isort = "5.9.3"
flake8 = "3.9.2"
pydocstyle = "6.1.1"
black = "^22.8"
mkdocs = "^1.3.1"
mkdocs-material = "^8.2.11"
[tool.poetry.extras]
aiohttp = ["aiohttp"]
[tool.pydocstyle]
convention = "google"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
ensure_newline_before_comments = true
known_third_party = ""
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"