mirror of
https://github.com/marceloprates/prettymaps.git
synced 2025-09-02 19:02:40 +02:00
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:
7
setup.py
Normal file → Executable file
7
setup.py
Normal file → Executable 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',
|
||||
)
|
||||
|
Reference in New Issue
Block a user