From 8f1a0903bb83507bae64333ac680103c7dadaf8f Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Date: Tue, 6 May 2025 19:15:33 +0200 Subject: [PATCH] Finish rebrand on the main repository Signed-off-by: jeanbaptisteC --- tools/python/airmaps/setup.py | 6 +++--- tools/python/data/base.py | 6 +++--- tools/python/data_files/setup.py | 6 +++--- tools/python/descriptions/setup.py | 6 +++--- tools/python/maps_generator/README.md | 6 +++--- tools/python/maps_generator/setup.py | 6 +++--- tools/python/mwm/setup.py | 6 +++--- tools/python/post_generation/setup.py | 6 +++--- 8 files changed, 24 insertions(+), 24 deletions(-) diff --git a/tools/python/airmaps/setup.py b/tools/python/airmaps/setup.py index 9a0b11b12..fac283e95 100755 --- a/tools/python/airmaps/setup.py +++ b/tools/python/airmaps/setup.py @@ -16,10 +16,10 @@ with chdir(os.path.abspath(os.path.dirname(__file__))): setuptools.setup( name="omim-airmaps", version=str(get_version()), - author="Organic Maps", - author_email="info@organicmaps.app", + author="CoMaps", + author_email="info@comaps.app", description="This package contains tools for generating maps with Apache Airflow.", - url="https://github.com/organicmaps", + url="https://codeberg.com/comaps", package_dir={"airmaps": ""}, package_data={"": ["var/**/*"]}, packages=[ diff --git a/tools/python/data/base.py b/tools/python/data/base.py index ba806126c..47aa7cff8 100644 --- a/tools/python/data/base.py +++ b/tools/python/data/base.py @@ -52,10 +52,10 @@ def setup( setuptools.setup( name="omim-data-{}".format(suffix), version=str(get_version()), - author="Organic Maps", - author_email="info@organicmaps.app", + author="CoMaps", + author_email="info@comaps.app", description="This package contains {} data files.".format(suffix), - url="https://github.com/organicmaps", + url="https://codeberg.com/comaps", packages=[] if packages is None else packages, package_dir={} if package_dir is None else package_dir, cmdclass={} if cmdclass is None else cmdclass, diff --git a/tools/python/data_files/setup.py b/tools/python/data_files/setup.py index 713d1b121..fbf838158 100644 --- a/tools/python/data_files/setup.py +++ b/tools/python/data_files/setup.py @@ -16,10 +16,10 @@ with chdir(os.path.abspath(os.path.dirname(__file__))): setuptools.setup( name="omim-data-files", version=str(get_version()), - author="Organic Maps", - author_email="info@organicmaps.app", + author="CoMaps", + author_email="info@comaps.app", description="This package is a library for dealing with data files.", - url="https://github.com/organicmaps", + url="https://codeberg.com/comaps", package_dir={"data_files": ""}, packages=["data_files",], classifiers=["License :: OSI Approved :: Apache Software License",] diff --git a/tools/python/descriptions/setup.py b/tools/python/descriptions/setup.py index 78c4a6d9d..b11845cb4 100755 --- a/tools/python/descriptions/setup.py +++ b/tools/python/descriptions/setup.py @@ -16,11 +16,11 @@ with chdir(os.path.abspath(os.path.dirname(__file__))): setuptools.setup( name="omim-descriptions", version=str(get_version()), - author="Organic Maps", - author_email="info@organicmaps.app", + author="CoMaps", + author_email="info@comaps.app", description="This package is a library that provides descriptions " "(such as those from Wikipedia) to geographic objects.", - url="https://github.com/organicmaps", + url="https://codeberg.com/comaps", package_dir={"descriptions": ""}, packages=["descriptions"], classifiers=[ diff --git a/tools/python/maps_generator/README.md b/tools/python/maps_generator/README.md index 732c953fa..91d38ce8f 100644 --- a/tools/python/maps_generator/README.md +++ b/tools/python/maps_generator/README.md @@ -8,7 +8,7 @@ maps built by a generator_tool newer than the app.** ## What are maps? Maps are `.mwm` binary files with special meta-information for rendering, searching, routing, and other use cases. -Files from [data/borders](https://github.com/organicmaps/organicmaps/tree/master/data/borders) define map boundaries for each individual file. The world is segmented into separate files by these boundaries, with the intent of having manageably small files to download. These files are referred to as *maps* or *countries*. A country is referring to one of these files, not necessarily a geographic country. Also note that there are two special countries called *World* and *WorldCoasts*. These are small simplified maps of the world and coastlines (sea and ocean watercover) used when other maps have not yet been downloaded. +Files from [data/borders](https://codeberg.com/comaps/comaps/src/branch/main/data/borders) define map boundaries for each individual file. The world is segmented into separate files by these boundaries, with the intent of having manageably small files to download. These files are referred to as *maps* or *countries*. A country is referring to one of these files, not necessarily a geographic country. Also note that there are two special countries called *World* and *WorldCoasts*. These are small simplified maps of the world and coastlines (sea and ocean watercover) used when other maps have not yet been downloaded. ## Setup @@ -42,7 +42,7 @@ cd tools/python/maps_generator pip3 install -r requirements_dev.txt ``` -5. Create a [configuration file with defaults](https://github.com/organicmaps/organicmaps/blob/master/tools/python/maps_generator/var/etc/map_generator.ini.default): +5. Create a [configuration file with defaults](https://codeberg.com/comaps/comaps/src/branch/main/tools/python/maps_generator/var/etc/map_generator.ini.default): ```sh cp var/etc/map_generator.ini.default var/etc/map_generator.ini @@ -172,4 +172,4 @@ In this example we skipped generation of the World\* files because they are ones ### Subways layer -You can manually generate a subway layer file to use in the `SUBWAY_URL` ini setting. See [instructions](https://github.com/organicmaps/organicmaps/tree/master/docs/SUBWAY_GENERATION.md). +You can manually generate a subway layer file to use in the `SUBWAY_URL` ini setting. See [instructions](https://codeberg.com/comaps/comaps/src/branch/main/docs/SUBWAY_GENERATION.md). diff --git a/tools/python/maps_generator/setup.py b/tools/python/maps_generator/setup.py index 31898cc29..1832163a2 100755 --- a/tools/python/maps_generator/setup.py +++ b/tools/python/maps_generator/setup.py @@ -16,10 +16,10 @@ with chdir(os.path.abspath(os.path.dirname(__file__))): setuptools.setup( name="omim-maps_generator", version=str(get_version()), - author="Organic Maps", - author_email="info@organicmaps.app", + author="CoMaps", + author_email="info@comaps.app", description="This package contains tools for maps generation.", - url="https://github.com/organicmaps", + url="https://codeberg.com/comaps", package_dir={"maps_generator": ""}, package_data={"": ["var/**/*"]}, packages=[ diff --git a/tools/python/mwm/setup.py b/tools/python/mwm/setup.py index 45d952510..1dd9247c7 100755 --- a/tools/python/mwm/setup.py +++ b/tools/python/mwm/setup.py @@ -16,10 +16,10 @@ with chdir(os.path.abspath(os.path.dirname(__file__))): setuptools.setup( name="omim-mwm", version=str(get_version()), - author="Organic Maps", - author_email="info@organicmaps.app", + author="CoMaps", + author_email="info@comaps.app", description="This package is a library that can work with mwm files.", - url="https://github.com/organicmaps", + url="https://codeberg.com/comaps", package_dir={"mwm": ""}, packages=["mwm"], classifiers=[ diff --git a/tools/python/post_generation/setup.py b/tools/python/post_generation/setup.py index a23a8efcf..d0df1e7cd 100644 --- a/tools/python/post_generation/setup.py +++ b/tools/python/post_generation/setup.py @@ -16,10 +16,10 @@ with chdir(os.path.abspath(os.path.dirname(__file__))): setuptools.setup( name="omim-post_generation", version=str(get_version()), - author="Organic Maps", - author_email="info@organicmaps.app", + author="CoMaps", + author_email="info@comaps.app", description="This package is a library for post-processing the generated maps.", - url="https://github.com/organicmaps", + url="https://codeberg.com/comaps", package_dir={"post_generation": ""}, packages=["post_generation"], classifiers=[