Mercurial > hg > Members > aka > jupyter_CbC_kernel
annotate setup.py @ 76:51504a45e73e
Update setup.py
committer: GitHub <noreply@github.com>
author | mycode <35049539+ntwuxc@users.noreply.github.com> |
---|---|
date | Sun, 03 Jun 2018 08:13:32 +0800 |
parents | b6b613c2a28a |
children | a6f483d4fc5f |
rev | line source |
---|---|
25
f257b2d1f95b
Use setuptools instead of distutils
Brendan Rius <brendan@omixy.com>
parents:
23
diff
changeset
|
1 from setuptools import setup |
9 | 2 |
3 setup(name='jupyter_c_kernel', | |
70 | 4 version='1.2.1', |
9 | 5 description='Minimalistic C kernel for Jupyter', |
6 author='Brendan Rius', | |
7 author_email='ping@brendan-rius.com', | |
76
51504a45e73e
Update setup.py
mycode <35049539+ntwuxc@users.noreply.github.com>
parents:
73
diff
changeset
|
8 url='https://github.com/brendan-rius/jupyter-c-kernel/', |
51504a45e73e
Update setup.py
mycode <35049539+ntwuxc@users.noreply.github.com>
parents:
73
diff
changeset
|
9 download_url='https://github.com/brendan-rius/jupyter-c-kernel/tarball/1.2.1', |
20 | 10 packages=['jupyter_c_kernel'], |
58
8a8a9952c887
Change install procedure
Brendan Rius <brendan.rius@gmail.com>
parents:
57
diff
changeset
|
11 scripts=['jupyter_c_kernel/install_c_kernel'], |
73
b6b613c2a28a
alter package structure, moving resources under parent module.
Cody Horst <chorst@uw.edu>
parents:
71
diff
changeset
|
12 keywords=['jupyter', 'notebook', 'kernel', 'c'], |
b6b613c2a28a
alter package structure, moving resources under parent module.
Cody Horst <chorst@uw.edu>
parents:
71
diff
changeset
|
13 include_package_data=True |
20 | 14 ) |