Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ Numpy extension for IPython.
Install
-------

```
pip install inumpy
```
or

```
pip install git+https://github.com/Lightslayer/inumpy # development
```

The following only works for Jupyter < 5.0:

```
%install_ext https://raw.github.com/piti118/inumpy/master/inumpy.py
```
Expand Down
1 change: 1 addition & 0 deletions inumpy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from inumpy import *
File renamed without changes.
48 changes: 48 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import io
from os import path

here = path.abspath(path.dirname(__file__))

# Get the long description from the relevant file
with io.open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

install_requires = [
'jupyter>=1.0.0',
]

setup(
name='inumpy',
version='0.0.1',
description='Numpy extension for IPython',
long_description=long_description,
url='https://github.com/piti118/inumpy',

# Author details
author='Piti Ongmongkolkul',
author_email='',

# Choose your license
license='',

# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Topic :: Text Processing :: Markup :: HTML',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],

# What does your project relate to?
keywords='ipython jupyter notebook numpy',

py_modules=['inumpy'],
install_requires=install_requires,
)