Add geopy to the dev dependencies

This commit is contained in:
Alexander Hess 2020-12-28 15:52:08 +01:00
parent 3e0300cb0e
commit 416a58f9dc
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
2 changed files with 38 additions and 1 deletions

38
poetry.lock generated
View file

@ -592,6 +592,34 @@ python-versions = "*"
[package.dependencies]
flake8 = "*"
[[package]]
name = "geographiclib"
version = "1.50"
description = "The geodesic routines from GeographicLib"
category = "dev"
optional = false
python-versions = "*"
[[package]]
name = "geopy"
version = "2.1.0"
description = "Python Geocoding Toolbox"
category = "dev"
optional = false
python-versions = ">=3.5"
[package.dependencies]
geographiclib = ">=1.49,<2"
[package.extras]
aiohttp = ["aiohttp"]
dev = ["async-generator", "flake8 (>=3.8.0,<3.9.0)", "isort (>=5.6.0,<5.7.0)", "coverage", "pytest-aiohttp", "pytest (>=3.10)", "readme-renderer", "sphinx", "sphinx-issues", "sphinx-rtd-theme (>=0.5.0)"]
dev-docs = ["readme-renderer", "sphinx", "sphinx-issues", "sphinx-rtd-theme (>=0.5.0)"]
dev-lint = ["async-generator", "flake8 (>=3.8.0,<3.9.0)", "isort (>=5.6.0,<5.7.0)"]
dev-test = ["async-generator", "coverage", "pytest-aiohttp", "pytest (>=3.10)"]
requests = ["urllib3 (>=1.24.2)", "requests (>=2.16.2)"]
timezone = ["pytz"]
[[package]]
name = "gitdb"
version = "4.0.5"
@ -1852,7 +1880,7 @@ research = ["jupyterlab", "nb_black", "numpy", "pandas", "pytz"]
[metadata]
lock-version = "1.1"
python-versions = "^3.8"
content-hash = "f067b44ed9a0fb333cddfcefa02d30516180c8c4af148ff4cb083abdd532f8e9"
content-hash = "03305636d62193eba71a06cc802846a4b00f5cdcaa3f71ceb4d35f55ead764b0"
[metadata.files]
alabaster = [
@ -2146,6 +2174,14 @@ flake8-string-format = [
{file = "flake8-string-format-0.2.3.tar.gz", hash = "sha256:774d56103d9242ed968897455ef49b7d6de272000cfa83de5814273a868832f1"},
{file = "flake8_string_format-0.2.3-py2.py3-none-any.whl", hash = "sha256:68ea72a1a5b75e7018cae44d14f32473c798cf73d75cbaed86c6a9a907b770b2"},
]
geographiclib = [
{file = "geographiclib-1.50-py3-none-any.whl", hash = "sha256:51cfa698e7183792bce27d8fb63ac8e83689cd8170a730bf35e1a5c5bf8849b9"},
{file = "geographiclib-1.50.tar.gz", hash = "sha256:12bd46ee7ec25b291ea139b17aa991e7ef373e21abd053949b75c0e9ca55c632"},
]
geopy = [
{file = "geopy-2.1.0-py3-none-any.whl", hash = "sha256:4db8a2b79a2b3358a7d020ea195be639251a831a1b429c0d1b20c9f00c67c788"},
{file = "geopy-2.1.0.tar.gz", hash = "sha256:892b219413e7955587b029949af3a1949c6fbac9d5ad17b79d850718f6a9550f"},
]
gitdb = [
{file = "gitdb-4.0.5-py3-none-any.whl", hash = "sha256:91f36bfb1ab7949b3b40e23736db18231bf7593edada2ba5c3a174a7b23657ac"},
{file = "gitdb-4.0.5.tar.gz", hash = "sha256:c9e1f2d0db7ddb9a704c2a0217be31214e91a4fe1dea1efad19ae42ba0c285c9"},

View file

@ -73,6 +73,7 @@ wemake-python-styleguide = "^0.14.1" # flake8 plug-in
# Test Suite
Faker = "^5.0.1"
factory-boy = "^3.1.0"
geopy = "^2.1.0"
packaging = "^20.4" # used to test the packaged version
pytest = "^6.0.1"
pytest-cov = "^2.10.0"