-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
61 lines (55 loc) · 1.48 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
[tool.poetry]
name = "yandex-geocoder"
version = "2.0.0" # VERSION_ANCHOR
description = "Simple library for getting address or coordinates via Yandex geocoder"
authors = ["Nikita Sivakov <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "yandex_geocoder"}]
homepage = "https://github.com/sivakov512/yandex-geocoder"
repository = "https://github.com/sivakov512/yandex-geocoder"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.28.1"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"
flake8-debugger = "^4.1.2"
flake8-isort = "^6.0.0"
flake8-print = "^5.0.0"
flake8-pytest-style = "^2.0.0"
flake8-quotes = "^3.3.2"
isort = "^5.11.4"
mypy = "^1.0.0"
pytest = "^8.0.0"
pytest-deadfixtures = "^2.2.1"
flake8-black = "^0.3.6"
black = "^24.0.0"
pytest-cov = "^5.0.0"
coveralls = "^3.3.1"
types-requests = "^2.28.11.7"
requests-mock = "^1.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
combine_as_imports = true
include_trailing_comma = true
line_length = 99
multi_line_output = 3
use_parentheses = true
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_ignores = true
implicit_reexport = false
[tool.black]
line-length = 100