Skip to content

Commit

Permalink
stitcher added, version 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jimut123 committed Apr 6, 2022
1 parent 687ebad commit 6a3314a
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- All feature branch shall be here, which are not yet merged to master


## [1.4.1] - 2022-04-06

### Added
- pip 1.4.1
- tiles_sticher.py - to stich tiles that are downloaded in the folder


### Modified
- jimutmap.py - updated the bug, now downloads road tiles with ease

## [1.4.0] - 2022-04-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<div align="center">
<a href="https://pepy.tech/project/jimutmap"><img src="https://pepy.tech/badge/jimutmap"></a>
<a href="https://pypi.org/project/jimutmap/"><img src="https://d25lcipzij17d.cloudfront.net/badge.svg?id=py&type=6&v=1.4.0"></a>
<a href="https://pypi.org/project/jimutmap/"><img src="https://d25lcipzij17d.cloudfront.net/badge.svg?id=py&type=6&v=1.4.1"></a>
<a href="https://jimutmap.readthedocs.io/en/latest/index.html"><img src="https://readthedocs.org/projects/pip/badge/?version=latest&style=plastic" alt="read-the-docs"></a>
<a href="https://www.gnu.org/licenses/gpl-3.0"><img src="https://img.shields.io/badge/License-GPL%20v3-blue.svg"></a>
<a href="https://pypistats.org/packages/jimutmap">
Expand Down
2 changes: 1 addition & 1 deletion jimutmap/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# ========================================================

__name__ = "jimutmap"
__version__ = "1.4.0"
__version__ = "1.4.1"
__author__ = "Jimut Bahan Pal | jimutbahanpal@yahoo.com"
__release_date__ = '4-May-2019'
from .jimutmap import api
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
opencv-python==4.5.5
certifi==2020.12.5 \
--hash=sha256:719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830 \
--hash=sha256:1a4995114262bffbc2413b159f2a1a480c969de6e6eb13ee966d470af86af59c
Expand Down
20 changes: 16 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,31 @@
# ========================================================
# This program fetches tiles from satellites.pro for free.
# OPEN SOURCED UNDER GPL-V3.0.
# Author : Jimut Bahan Pal | jimutbahanpal@yahoo.com
# Project Website: https://github.com/Jimut123/jimutmap
# pylint: disable = global-statement
# cSpell: words imghdr, tqdm, asinh, jimut, bahan
# ========================================================

# https://packaging.python.org/en/latest/tutorials/packaging-projects/

import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="jimutmap",
version="1.4.0",
author="Jimutmap Contributors",
version="1.4.1",
author="Jimut Bahan Pal and the Jimutmap Contributors",
author_email="jimutbahanpal@yahoo.com",
description="To get enormous amount of Apple Maps tile with ease",
description="To get enormous amount of map tiles with ease",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Jimut123/jimutmap",
install_requires=['certifi==2020.12.5','chardet==4.0.0','chromedriver-autoinstaller==0.2.2','idna==2.10',
'numpy==1.19.5','requests==2.25.1','selenium==3.141.0','tqdm==4.53.0','urllib3==1.26.5'],
'numpy==1.19.5','requests==2.25.1','selenium==3.141.0','tqdm==4.53.0','urllib3==1.26.5',
'opencv-python==4.5.5'],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 6a3314a

Please sign in to comment.