comparison setup.py @ 79:8c05de54d88d

Add license classifier for PyPI.
author Elliott Sales de Andrade <quantum.analyst@gmail.com>
date Thu, 15 Mar 2018 02:21:13 -0400
parents b6b613c2a28a
children a6f483d4fc5f
comparison
equal deleted inserted replaced
78:f17d7374c947 79:8c05de54d88d
3 setup(name='jupyter_c_kernel', 3 setup(name='jupyter_c_kernel',
4 version='1.2.1', 4 version='1.2.1',
5 description='Minimalistic C kernel for Jupyter', 5 description='Minimalistic C kernel for Jupyter',
6 author='Brendan Rius', 6 author='Brendan Rius',
7 author_email='ping@brendan-rius.com', 7 author_email='ping@brendan-rius.com',
8 license='MIT',
9 classifiers=[
10 'License :: OSI Approved :: MIT License',
11 ],
8 url='https://github.com/brendanrius/jupyter-c-kernel/', 12 url='https://github.com/brendanrius/jupyter-c-kernel/',
9 download_url='https://github.com/brendanrius/jupyter-c-kernel/tarball/1.2.1', 13 download_url='https://github.com/brendanrius/jupyter-c-kernel/tarball/1.2.1',
10 packages=['jupyter_c_kernel'], 14 packages=['jupyter_c_kernel'],
11 scripts=['jupyter_c_kernel/install_c_kernel'], 15 scripts=['jupyter_c_kernel/install_c_kernel'],
12 keywords=['jupyter', 'notebook', 'kernel', 'c'], 16 keywords=['jupyter', 'notebook', 'kernel', 'c'],