Mercurial > hg > Members > aka > jupyter_CbC_kernel
annotate setup.py @ 55:4a03cede4763
Merge pull request #27 from spoorcc/issue-14
Fix #14: Add args magic to provide cli-args to user program
committer: GitHub <noreply@github.com>
author | Brendan Rius <brendan.rius@gmail.com> |
---|---|
date | Thu, 13 Apr 2017 11:29:48 +0200 |
parents | f257b2d1f95b |
children | 308a0eaa4e49 |
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', | |
22
65819f00b268
Change version from 1.0 to 1.0.0
Brendan Rius <brendan@omixy.com>
parents:
21
diff
changeset
|
4 version='1.0.0', |
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/', |
a87de172d242
Add URL and download URL to setup.py
Brendan Rius <brendan@omixy.com>
parents:
22
diff
changeset
|
9 download_url='https://github.com/brendanrius/jupyter-c-kernel/tarball/1.0.0', |
20 | 10 packages=['jupyter_c_kernel'], |
21 | 11 keywords=['jupyter', 'kernel', 'c'] |
20 | 12 ) |