Mercurial > hg > Members > aka > jupyter_CbC_kernel
changeset 89:6f8c3f8b5c07
fix setup.py
author | akahori |
---|---|
date | Tue, 26 Jun 2018 12:53:52 +0900 |
parents | 925bc39ddb92 |
children | 0dceb5dbea0d |
files | .hgignore setup.py |
diffstat | 2 files changed, 33 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgignore Tue Jun 26 10:52:16 2018 +0900 +++ b/.hgignore Tue Jun 26 12:53:52 2018 +0900 @@ -8,3 +8,34 @@ .ipynb_checkpoints/ *.egg-info/ venv/ +.git +.gitignore + + +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk \ No newline at end of file
--- a/setup.py Tue Jun 26 10:52:16 2018 +0900 +++ b/setup.py Tue Jun 26 12:53:52 2018 +0900 @@ -4,15 +4,12 @@ version='0.1', description='Minimalistic CbC kernel for Jupyter', author='e155753', - #author_email='ping@brendan-rius.com', + author_email='kiichi_aka@cr.ie.u-ryukyu.ac.jp', license='MIT', classifiers=[ 'License :: OSI Approved :: MIT License', ], - #url='https://github.com/brendan-rius/jupyter-c-kernel/', - #download_url='https://github.com/brendan-rius/jupyter-c-kernel/tarball/1.2.1', packages=['jupyter_CbC_kernel'], - scripts=['jupyter_CbC_kernel/install_c_kernel'], - #keywords=['jupyter', 'notebook', 'kernel', 'CbC'], + scripts=['jupyter_CbC_kernel/install_CbC_kernel'], include_package_data=True )