mirror of
https://github.com/marceloprates/prettymaps.git
synced 2025-09-03 03:13:47 +02:00
1) Added support for rendering sea geometries automatically 2) added support for drawing hillshades 3) added support for adding keypoints 4) refactored code 5) optimized code by making fewer requests to overpass API 6) added frontend (streamlit) app
This commit is contained in:
8
setup.py
Executable file → Normal file
8
setup.py
Executable file → Normal file
@@ -7,7 +7,7 @@ presets_dir = os.path.abspath(os.path.join(os.path.pardir, "presets"))
|
||||
|
||||
setup(
|
||||
name="prettymaps",
|
||||
version="v1.3.1",
|
||||
version="v1.4",
|
||||
description="A simple python library to draw pretty maps from OpenStreetMap data",
|
||||
long_description=parent_dir.joinpath("README.md").read_text(),
|
||||
long_description_content_type="text/markdown",
|
||||
@@ -16,11 +16,7 @@ setup(
|
||||
author_email="marceloorp@gmail.com",
|
||||
license="MIT License",
|
||||
packages=find_packages(exclude=("assets", "notebooks", "prints", "script")),
|
||||
install_requires=parent_dir.joinpath("requirements.txt")
|
||||
.read_text()
|
||||
.splitlines(), # + [
|
||||
#'vsketch @ git+https://github.com/abey79/vsketch@1.0.0'
|
||||
# ],
|
||||
install_requires=parent_dir.joinpath("requirements.txt").read_text().splitlines(),
|
||||
classifiers=[
|
||||
"Intended Audience :: Science/Research",
|
||||
],
|
||||
|
Reference in New Issue
Block a user