Mercurial > hg > Members > aka > jupyter_CbC_kernel
annotate setup.py @ 42:778218c42d18
Make step-by-step installation less error prone
The pip install is now made before we clone (so we always install from PyPi) and the Git clone is made via HTTPS not SSH in case you do not have your SSH key on your GH account
author | Brendan Rius <brendan.rius@gmail.com> |
---|---|
date | Wed, 08 Jun 2016 10:34:02 +0100 |
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 ) |