forked from rendrom/rosreestr2coord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.12 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
[tool.poetry]
name = "rosreestr2coord"
version = "4.0.7"
license = "MIT"
description = "Get geojson with coordinates of area by cadastral number."
authors = ["Artemiy Doroshkov <rendrom@gmail.com>"]
readme = 'README.md'
repository = "https://github.com/rendrom/rosreestr2coord"
homepage = "https://github.com/rendrom/rosreestr2coord"
[tool.poetry.dependencies]
python = "^3.6"
numpy = "^1.17"
opencv-python = "^4.0"
Pillow = "^7.0"
matplotlib = "^3.2"
[tool.poetry.dev-dependencies]
pytest = '^5.0'
pytest-cov = '^2.4'
tox = '^3.4'
mypy = '*'
flake8 = '*'
[tool.poetry.scripts]
rosreestr2coord = 'scripts.console:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[mypy]
ignore_missing_imports = true
show_error_context = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_subclassing_any = false
warn_no_return = true
strict_optional = true
no_implicit_optional = true
disallow_any_generics = true
disallow_any_unimported = false
warn_redundant_casts = true
warn_unused_configs = true
show_traceback = true
always_false = 'MYPYC'