src/geokit.app.src

{application, geokit, [
    {vsn, "0.1.0"},
    {applications, [gleam_community_maths,
                    gleam_json,
                    gleam_stdlib]},
    {description, "Spherical-earth math, location encodings, and geometry operations for Gleam: haversine, bearing, geohash, polyline, Web Mercator, bbox / centroid / simplify."},
    {modules, [geokit,
               geokit@@main,
               geokit@bbox,
               geokit@bearing,
               geokit@centroid,
               geokit@distance,
               geokit@geohash,
               geokit@geojson,
               geokit@geometry,
               geokit@latlng,
               geokit@mercator,
               geokit@polyline,
               geokit@simplify]},
    {registered, []}
]}.