Finish rebrand on the main repository

Signed-off-by: jeanbaptisteC <jeanbaptistec@noreply.codeberg.org>
This commit is contained in:
Jean-Baptiste
2025-05-06 19:15:33 +02:00
committed by Konstantin Pastbin
parent 76e17a34bb
commit 8f1a0903bb
8 changed files with 24 additions and 24 deletions

View File

@@ -16,10 +16,10 @@ with chdir(os.path.abspath(os.path.dirname(__file__))):
setuptools.setup( setuptools.setup(
name="omim-airmaps", name="omim-airmaps",
version=str(get_version()), version=str(get_version()),
author="Organic Maps", author="CoMaps",
author_email="info@organicmaps.app", author_email="info@comaps.app",
description="This package contains tools for generating maps with Apache Airflow.", 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_dir={"airmaps": ""},
package_data={"": ["var/**/*"]}, package_data={"": ["var/**/*"]},
packages=[ packages=[

View File

@@ -52,10 +52,10 @@ def setup(
setuptools.setup( setuptools.setup(
name="omim-data-{}".format(suffix), name="omim-data-{}".format(suffix),
version=str(get_version()), version=str(get_version()),
author="Organic Maps", author="CoMaps",
author_email="info@organicmaps.app", author_email="info@comaps.app",
description="This package contains {} data files.".format(suffix), 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, packages=[] if packages is None else packages,
package_dir={} if package_dir is None else package_dir, package_dir={} if package_dir is None else package_dir,
cmdclass={} if cmdclass is None else cmdclass, cmdclass={} if cmdclass is None else cmdclass,

View File

@@ -16,10 +16,10 @@ with chdir(os.path.abspath(os.path.dirname(__file__))):
setuptools.setup( setuptools.setup(
name="omim-data-files", name="omim-data-files",
version=str(get_version()), version=str(get_version()),
author="Organic Maps", author="CoMaps",
author_email="info@organicmaps.app", author_email="info@comaps.app",
description="This package is a library for dealing with data files.", 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": ""}, package_dir={"data_files": ""},
packages=["data_files",], packages=["data_files",],
classifiers=["License :: OSI Approved :: Apache Software License",] classifiers=["License :: OSI Approved :: Apache Software License",]

View File

@@ -16,11 +16,11 @@ with chdir(os.path.abspath(os.path.dirname(__file__))):
setuptools.setup( setuptools.setup(
name="omim-descriptions", name="omim-descriptions",
version=str(get_version()), version=str(get_version()),
author="Organic Maps", author="CoMaps",
author_email="info@organicmaps.app", author_email="info@comaps.app",
description="This package is a library that provides descriptions " description="This package is a library that provides descriptions "
"(such as those from Wikipedia) to geographic objects.", "(such as those from Wikipedia) to geographic objects.",
url="https://github.com/organicmaps", url="https://codeberg.com/comaps",
package_dir={"descriptions": ""}, package_dir={"descriptions": ""},
packages=["descriptions"], packages=["descriptions"],
classifiers=[ classifiers=[

View File

@@ -8,7 +8,7 @@ maps built by a generator_tool newer than the app.**
## What are maps? ## What are maps?
Maps are `.mwm` binary files with special meta-information for rendering, searching, routing, and other use cases. 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 ## Setup
@@ -42,7 +42,7 @@ cd tools/python/maps_generator
pip3 install -r requirements_dev.txt 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 ```sh
cp var/etc/map_generator.ini.default var/etc/map_generator.ini 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 ### 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).

View File

@@ -16,10 +16,10 @@ with chdir(os.path.abspath(os.path.dirname(__file__))):
setuptools.setup( setuptools.setup(
name="omim-maps_generator", name="omim-maps_generator",
version=str(get_version()), version=str(get_version()),
author="Organic Maps", author="CoMaps",
author_email="info@organicmaps.app", author_email="info@comaps.app",
description="This package contains tools for maps generation.", description="This package contains tools for maps generation.",
url="https://github.com/organicmaps", url="https://codeberg.com/comaps",
package_dir={"maps_generator": ""}, package_dir={"maps_generator": ""},
package_data={"": ["var/**/*"]}, package_data={"": ["var/**/*"]},
packages=[ packages=[

View File

@@ -16,10 +16,10 @@ with chdir(os.path.abspath(os.path.dirname(__file__))):
setuptools.setup( setuptools.setup(
name="omim-mwm", name="omim-mwm",
version=str(get_version()), version=str(get_version()),
author="Organic Maps", author="CoMaps",
author_email="info@organicmaps.app", author_email="info@comaps.app",
description="This package is a library that can work with mwm files.", 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": ""}, package_dir={"mwm": ""},
packages=["mwm"], packages=["mwm"],
classifiers=[ classifiers=[

View File

@@ -16,10 +16,10 @@ with chdir(os.path.abspath(os.path.dirname(__file__))):
setuptools.setup( setuptools.setup(
name="omim-post_generation", name="omim-post_generation",
version=str(get_version()), version=str(get_version()),
author="Organic Maps", author="CoMaps",
author_email="info@organicmaps.app", author_email="info@comaps.app",
description="This package is a library for post-processing the generated maps.", 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": ""}, package_dir={"post_generation": ""},
packages=["post_generation"], packages=["post_generation"],
classifiers=[ classifiers=[