forked from brendan-rius/jupyter-c-kernel
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
26 lines (25 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup
setup(name='jupyter_fortran_kernel',
version='0.1.0',
description='Minimalistic Fortran kernel for Jupyter',
author='Peter Hill',
author_email='peter@fusionplasma.co.uk',
url='https://github.com/ZedThree/jupyter-fortran-kernel/',
download_url='https://github.com/ZedThree/jupyter-fortran-kernel/tarball/0.1.0',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: IPython',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Fortran',
],
packages=['jupyter_fortran_kernel'],
keywords=['jupyter', 'kernel', 'fortran']
)