25 lines
593 B
Python
25 lines
593 B
Python
from distutils.core import setup
|
|
from Cython.Build import cythonize
|
|
|
|
setup(ext_modules=cythonize([
|
|
"main.py",
|
|
"auto_realtime.py",
|
|
"auto_store_non_realtime_SCADA_data.py",
|
|
"tjnetwork.py",
|
|
"online_Analysis.py",
|
|
"sensitivity.py",
|
|
"run_simlation.py",
|
|
"run_simulation.py",
|
|
"get_hist_data.py",
|
|
"get_realValue.py",
|
|
"get_data.py",
|
|
"get_current_total_Q.py",
|
|
"get_current_status.py",
|
|
"influxdb_api.py",
|
|
"influxdb_query_SCADA_data.py",
|
|
"sensor_placement.py",
|
|
"simulation.py",
|
|
"time_api.py",
|
|
"api/*.py",
|
|
"epanet/*.py"
|
|
])) |