Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
21
tools/python/data/all/setup.py
Executable file
21
tools/python/data/all/setup.py
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
#!/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])
|
||||
Loading…
Add table
Add a link
Reference in a new issue