8 lines
160 B
Python
8 lines
160 B
Python
from distutils.core import setup
|
|
from Cython.Build import cythonize
|
|
|
|
setup(ext_modules=cythonize([
|
|
"tjnetwork.py",
|
|
"api/*.py",
|
|
"epanet/*.py"
|
|
])) |