Mercurial > hg > Members > aka > jupyter_CbC_kernel
annotate setup.py @ 73:b6b613c2a28a
alter package structure, moving resources under parent module.
author | Cody Horst <chorst@uw.edu> |
---|---|
date | Tue, 23 Jan 2018 22:34:24 -0800 |
parents | 828af72656e2 |
children | 51504a45e73e 8c05de54d88d |
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'], |
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 ) |