fix module definition for setup.py

This commit is contained in:
Jonathan Coe 2015-05-22 21:58:20 +01:00 committed by sftnight
parent b21455cbd8
commit 8e8fb11831

View File

@ -40,7 +40,7 @@ pkg_root = pjoin(here, name)
setup_args = dict(
name = name,
version = '0.0.1',
py_modules = 'clingkernel',
py_modules = ['clingkernel'],
scripts = glob(pjoin('scripts', '*')),
description = "C++ Kernel for Jupyter with Cling",
author = 'Min RK',