mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 21:33:59 +00:00
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
22 lines
456 B
Python
Executable File
22 lines
456 B
Python
Executable File
#!/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
|
|
|
|
_V = get_version()
|
|
|
|
_D = [
|
|
"omim-data-borders",
|
|
"omim-data-essential",
|
|
"omim-data-files",
|
|
"omim-data-fonts",
|
|
"omim-data-styles",
|
|
]
|
|
|
|
setup(__file__, "all", [], install_requires=["{}=={}".format(d, _V) for d in _D])
|