mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 21:13:35 +00:00
Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
This commit is contained in:
44
tools/python/data/essential/setup.py
Executable file
44
tools/python/data/essential/setup.py
Executable file
@@ -0,0 +1,44 @@
|
||||
#!/usr/bin/env python3
|
||||
import os
|
||||
import sys
|
||||
|
||||
module_dir = os.path.abspath(os.path.dirname(__file__))
|
||||
sys.path.insert(0, os.path.join(module_dir, "..", ".."))
|
||||
|
||||
from data.base import get_version
|
||||
from data.base import setup
|
||||
|
||||
setup(
|
||||
__file__,
|
||||
"essential",
|
||||
[
|
||||
"borders_vs_osm.csv",
|
||||
"categories_brands.txt",
|
||||
"categories_cuisines.txt",
|
||||
"categories.txt",
|
||||
"classificator.txt",
|
||||
"colors.txt",
|
||||
"countries_meta.txt",
|
||||
"countries_synonyms.csv",
|
||||
"countries.txt",
|
||||
"external_resources.txt",
|
||||
"fonts_blacklist.txt",
|
||||
"fonts_whitelist.txt",
|
||||
"hierarchy.txt",
|
||||
"mapcss-dynamic.txt",
|
||||
"mapcss-mapping.csv",
|
||||
"mixed_nodes.txt",
|
||||
"mixed_tags.txt",
|
||||
"old_vs_new.csv",
|
||||
"patterns.txt",
|
||||
"replaced_tags.txt",
|
||||
"skipped_elements.json",
|
||||
"synonyms.txt",
|
||||
"transit_colors.txt",
|
||||
"types.txt",
|
||||
"ugc_types.csv",
|
||||
"unicode_blocks.txt",
|
||||
"visibility.txt",
|
||||
],
|
||||
install_requires=["omim-data-files=={}".format(get_version())]
|
||||
)
|
||||
Reference in New Issue
Block a user