mirror of
https://github.com/vale981/master-thesis
synced 2025-03-09 04:36:39 -04:00
13 lines
282 B
Python
13 lines
282 B
Python
|
from dependency_hash import Dependencies
|
||
|
import stg
|
||
|
import hopsflow
|
||
|
import hops
|
||
|
import stg_helper
|
||
|
from utilities import has_all_samples_checker
|
||
|
|
||
|
deps = Dependencies(
|
||
|
files=[stg.__file__],
|
||
|
modules=[hopsflow, hops, stg_helper],
|
||
|
conditions=[has_all_samples_checker(stg)]
|
||
|
)
|