Metadata-Version: 2.1
Name: damenumpy
Version: 0.1.1
Summary: Learning Numpy from Tests by David Arroyo Menéndez
Home-page: http://github.com/davidam/damenumpy
Author: David Arroyo Menéndez
Author-email: davidam@gmail.com
License: GPLv3
Keywords: numpy tests
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Scientific/Engineering
License-File: LICENSE

<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#sec-1">1. Check Test</a></li>
<li><a href="#sec-2">2. Pypi</a></li>
</ul>
</div>
</div>

Learning Numpy from Tests by David Arroyo Menéndez

# Check Test<a id="sec-1" name="sec-1"></a>

-   Execute all tests:

    $ nosetests3 tests

-   Execute one file:

    $ nosetests3 tests/test_basics.py

-   Execute one test:

    $ nosetests3 tests/test_basics.py:TestBasics.test_indexing

# Pypi<a id="sec-2" name="sec-2"></a>

-   To install from local:

$ pip install -e .

-   To install create tar.gz in dist directory:

$ python3 setup.py register sdist

-   To upload to pypi:

$ twine upload dist/damenumpy-0.1.tar.gz

-   You can install from Internet in a python virtual environment to check:

$ python3 -m venv /tmp/funny
$ cd /tmp/funny
$ source bin/activate
$ pip3 install damenumpy
