Mercurial > hg > Members > aka > jupyter_CbC_kernel
annotate setup.py @ 71:828af72656e2
add resources as package data. Probably bork current Dockerfile
author | Cody Horst <chorst@uw.edu> |
---|---|
date | Fri, 08 Dec 2017 19:34:26 -0800 |
parents | eec68d0a113e |
children | b6b613c2a28a |
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', | |
23
a87de172d242
Add URL and download URL to setup.py
Brendan Rius <brendan@omixy.com>
parents:
22
diff
changeset
|
8 url='https://github.com/brendanrius/jupyter-c-kernel/', |
70 | 9 download_url='https://github.com/brendanrius/jupyter-c-kernel/tarball/1.2.1', |
20 | 10 packages=['jupyter_c_kernel'], |
71
828af72656e2
add resources as package data. Probably bork current Dockerfile
Cody Horst <chorst@uw.edu>
parents:
70
diff
changeset
|
11 package_data={'jupyter_c_kernel': ['resources/']}, |
58
8a8a9952c887
Change install procedure
Brendan Rius <brendan.rius@gmail.com>
parents:
57
diff
changeset
|
12 scripts=['jupyter_c_kernel/install_c_kernel'], |
8a8a9952c887
Change install procedure
Brendan Rius <brendan.rius@gmail.com>
parents:
57
diff
changeset
|
13 keywords=['jupyter', 'notebook', 'kernel', 'c'] |
20 | 14 ) |