table_extraction / setup.py
keesephillips's picture
edited setup.py
e3ab59f verified
raw
history blame contribute delete
369 Bytes
import subprocess
import sys
script = 'make_dataset.py'
command = f'{sys.executable} scripts/{script}'
subprocess.run(command, shell=True)
script = 'build_features.py'
command = f'{sys.executable} scripts/{script}'
subprocess.run(command, shell=True)
script = 'model.py'
command = f'{sys.executable} scripts/{script}'
subprocess.run(command, shell=True)