view 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
line wrap: on
line source

from setuptools import setup

setup(name='jupyter_c_kernel',
      version='1.2.1',
      description='Minimalistic C kernel for Jupyter',
      author='Brendan Rius',
      author_email='ping@brendan-rius.com',
      license='MIT',
      classifiers=[
          'License :: OSI Approved :: MIT License',
      ],
      url='https://github.com/brendanrius/jupyter-c-kernel/',
      download_url='https://github.com/brendanrius/jupyter-c-kernel/tarball/1.2.1',
      packages=['jupyter_c_kernel'],
      scripts=['jupyter_c_kernel/install_c_kernel'],
      keywords=['jupyter', 'notebook', 'kernel', 'c'],
      include_package_data=True
      )