From 8ee03da6af19057612daf57db52822452a2f2b54 Mon Sep 17 00:00:00 2001 From: "Brendan C. Ward" Date: Wed, 16 Oct 2019 12:14:12 -0700 Subject: [PATCH] Version 0.4.0 release --- Pipfile | 4 ++++ README.md | 8 ++++---- setup.py | 7 +++++-- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/Pipfile b/Pipfile index 6211677..5e1a751 100644 --- a/Pipfile +++ b/Pipfile @@ -8,4 +8,8 @@ name = "pypi" [dev-packages] pytest = "*" pytest-cov = "*" +black = "*" +pylint = "*" +[pipenv] +allow_prereleases = true diff --git a/README.md b/README.md index c7a422e..8dd5f42 100644 --- a/README.md +++ b/README.md @@ -138,15 +138,15 @@ Tiles are output to mbtiles format in xyz tile scheme. ## Changes : -### 0.3.0 - -- all write-like operations for metadata and tiles are now overwrite by default - ### 0.4.0 - added `list_tiles` to list tiles and `list_tiles_batch` to list tiles in batches - added `ops` module with `extend`, `union`, `difference` functions +### 0.3.0 + +- all write-like operations for metadata and tiles are now overwrite by default + ## Credits: Inspired by: diff --git a/setup.py b/setup.py index ab5360b..08a941e 100644 --- a/setup.py +++ b/setup.py @@ -7,11 +7,14 @@ packages=["pymbtiles"], url="https://github.com/consbio/pymbtiles", license="ISC", - author="Brendan Ward", - author_email="bcward@consbio.org", + author="Brendan C. Ward", + author_email="bcward@astutespruce.com", description="MapBox Mbtiles Utilities", long_description_content_type="text/markdown", long_description=open("README.md").read(), install_requires=[], + extras_require={ + 'test': ['pytest', 'pytest-cov'], + }, include_package_data=True, )