forked from louzounlab/graph-measures
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__init__.py
More file actions
13 lines (12 loc) · 728 Bytes
/
__init__.py
File metadata and controls
13 lines (12 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
import os
import sys
for path_name in [os.path.join(os.path.dirname(__file__)),
os.path.join(os.path.dirname(__file__), 'features_algorithms'),
os.path.join(os.path.dirname(__file__), 'features_algorithms', 'accelerated_graph_features'),
os.path.join(os.path.dirname(__file__), 'features_algorithms', 'vertices'),
os.path.join(os.path.dirname(__file__), 'features_infra'),
os.path.join(os.path.dirname(__file__), 'graph_infra'),
os.path.join(os.path.dirname(__file__), 'features_processor'),
os.path.join(os.path.dirname(__file__), 'features_meta')
]:
sys.path.append(path_name)