Spaces:
Runtime error
Runtime error
File size: 1,291 Bytes
b7b759c 6577b7a b7b759c 282197c b7b759c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | [build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "maptoposter"
version = "0.1.0"
description = "Generate beautiful, minimalist map posters for any city in the world."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
# NOTE: These are currently pinned to match the existing requirements.txt.
# If you prefer a smaller direct-dependency set, we can simplify this list
# and let uv resolve transitive versions into uv.lock.
dependencies = [
"gradio>=4.0.0",
"certifi==2026.1.4",
"charset-normalizer==3.4.4",
"contourpy==1.3.3",
"cycler==0.12.1",
"fonttools==4.61.1",
"geographiclib==2.1",
"geopandas==1.1.2",
"geopy==2.4.1",
"idna==3.11",
"kiwisolver==1.4.9",
"matplotlib==3.10.8",
"networkx==3.6.1",
"numpy==2.4.0",
"osmnx==2.0.7",
"packaging==25.0",
"pandas==2.3.3",
"pillow==12.1.0",
"pydantic==2.11.1",
"pyogrio==0.12.1",
"pyparsing==3.3.1",
"pyproj==3.7.2",
"python-dateutil==2.9.0.post0",
"pytz==2025.2",
"requests==2.32.5",
"scipy==1.16.3",
"shapely==2.1.2",
"six==1.17.0",
"tqdm==4.67.1",
"tzdata==2025.3",
"urllib3==2.6.3",
]
[project.scripts]
maptoposter = "create_map_poster:main"
[tool.setuptools]
py-modules = ["create_map_poster"]
|