Merge branch 'release-0.3.0' into develop

This commit is contained in:
Alexander Hess 2021-02-04 13:22:13 +01:00
commit 915aa4d3b4
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
93 changed files with 12390 additions and 2171 deletions

View file

@ -9,7 +9,7 @@ target-version = ["py38"]
[tool.poetry]
name = "urban-meal-delivery"
version = "0.3.0.dev0"
version = "0.4.0.dev0"
authors = ["Alexander Hess <alexander@webartifex.biz>"]
description = "Optimizing an urban meal delivery platform"
@ -28,18 +28,23 @@ repository = "https://github.com/webartifex/urban-meal-delivery"
python = "^3.8"
# Package => code developed in *.py files and packaged under src/urban_meal_delivery
Shapely = "^1.7.1"
alembic = "^1.4.2"
click = "^7.1.2"
folium = "^0.12.1"
matplotlib = "^3.3.3"
pandas = "^1.1.0"
psycopg2 = "^2.8.5" # adapter for PostgreSQL
python-dotenv = "^0.14.0"
rpy2 = "^3.4.1"
sqlalchemy = "^1.3.18"
statsmodels = "^0.12.1"
utm = "^0.7.0"
# Jupyter Lab => notebooks with analyses using the developed package
# IMPORTANT: must be kept in sync with the "research" extra below
jupyterlab = { version="^2.2.2", optional=true }
nb_black = { version="^1.0.7", optional=true }
numpy = { version="^1.19.1", optional=true }
pandas = { version="^1.1.0", optional=true }
pytz = { version="^2020.1", optional=true }
[tool.poetry.extras]
@ -47,7 +52,6 @@ research = [
"jupyterlab",
"nb_black",
"numpy",
"pandas",
"pytz",
]
@ -68,14 +72,18 @@ flake8-black = "^0.2.1"
flake8-expression-complexity = "^0.0.8"
flake8-pytest-style = "^1.2.2"
mypy = "^0.782"
pylint = "^2.5.3"
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"
pytest-env = "^0.6.2"
pytest-mock = "^3.5.1"
pytest-randomly = "^3.5.0"
xdoctest = { version="^0.13.0", extras=["optional"] }
# Documentation
@ -83,4 +91,4 @@ sphinx = "^3.1.2"
sphinx-autodoc-typehints = "^1.11.0"
[tool.poetry.scripts]
umd = "urban_meal_delivery.console:main"
umd = "urban_meal_delivery.console:cli"