forked from mlrun/mlrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.py
58 lines (47 loc) · 2.12 KB
/
packages.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright 2023 MLRun Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
import typing
def packages(exclude_packages: typing.List[str] = None) -> typing.List[str]:
"""Get list of project packages"""
_exclude_packages = set(exclude_packages or [])
all_packages = _flatten_packages(
_get_package_dict(f"{os.path.dirname(__file__)}/mlrun"), parent_key="mlrun"
)
return list(sorted(all_packages.difference(_exclude_packages)))
def _get_package_dict(starting_path, exclude: typing.List[str] = None) -> typing.Dict:
"""Get hierarchical dict of packages from starting path"""
package_dict = {}
exclude = exclude or ["__pycache__"]
for dir_path, dir_names, _ in os.walk(starting_path):
key_path = dir_path.replace(starting_path, "")
sub_package_dict = package_dict
for sub_package in key_path.split("/"):
if sub_package and sub_package not in exclude:
sub_package_dict = sub_package_dict[sub_package]
for dir_name in dir_names:
if dir_name not in exclude:
sub_package_dict[dir_name] = {}
return package_dict
def _flatten_packages(
package_dict: typing.Dict, parent_key: str = "", sep: str = "."
) -> typing.Set[str]:
"""Flatten hierarchical dict of packages to set of packages"""
items = [parent_key] if parent_key else []
for key, value in package_dict.items():
new_key = f"{parent_key}{sep}{key}" if parent_key else key
items.append(new_key)
if isinstance(value, dict) and value:
items.extend(_flatten_packages(value, new_key, sep=sep))
return set(items)