Fixed minor bugs, added support for vsketch and updated code for compatibility with shapely==2.0.0 and python==3.11

This commit is contained in:
Marcelo Prates
2024-07-02 17:59:10 -03:00
parent dc90176911
commit f4aab1a676
169 changed files with 815 additions and 1168444 deletions

7
setup.py Normal file → Executable file
View File

@@ -7,7 +7,7 @@ presets_dir = os.path.abspath(os.path.join(os.path.pardir, 'presets'))
setup(
name="prettymaps",
version="v1.0.0",
version="v1.1.0",
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",
@@ -18,10 +18,13 @@ setup(
packages=find_packages(
exclude=("assets", "notebooks", "prints", "script")),
install_requires=parent_dir.joinpath(
"requirements.txt").read_text().splitlines(),
"requirements.txt").read_text().splitlines() + [
'vsketch @ git+https://github.com/abey79/vsketch@1.0.0'
],
classifiers=[
"Intended Audience :: Science/Research",
],
package_dir={'prettymaps': 'prettymaps'},
package_data={'prettymaps': ['presets/*.json']},
python_requires = '>=3.11',
)