forked from sivakov512/yandex-geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.52 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
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "yandex-geo"
version = "2.1.2" # VERSION_ANCHOR
description = "Simple library for getting address or coordinates via Yandex geocoder"
authors = [
"Nikita Sivakov <[email protected]>",
"David Dzhalaev <[email protected]>",
]
license = "MIT"
readme = "README.md"
packages = [{ include = "yandex_geocoder" }]
homepage = "https://github.com/QueGroup/yandex-geocoder"
repository = "https://github.com/QueGroup/yandex-geocoder"
[tool.poetry.dependencies]
python = "^3.11"
httpx = "^0.27.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.14"
isort = "^5.11.4"
mypy = "^1.0.0"
pre-commit = "^3.7.0"
pytest = "^8.0.0"
pytest-asyncio = "0.23.6"
pytest-httpx = "^0.30.0"
pytest-deadfixtures = "^2.2.1"
black = "^24.0.0"
pytest-cov = "^5.0.0"
coveralls = "^3.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
force_grid_wrap = 1
multi_line_output = 3
honor_noqa = true
float_to_top = true
combine_as_imports = true
force_sort_within_sections = true
include_trailing_comma = true
line_length = 79
use_parentheses = true
known_third_party = ["httpx"]
[tool.mypy]
python_version = "3.11"
warn_unused_ignores = true
ignore_missing_imports = true
strict_optional = false
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
disallow_any_generics = true
disallow_untyped_calls = true
warn_redundant_casts = true
warn_unused_configs = true
strict_equality = true
[tool.black]
line-length = 79