Metadata-Version: 1.1
Name: damepandas
Version: 0.0.9
Summary: Learning Pandas from Tests by David Arroyo Menéndez
Home-page: http://github.com/davidam/damepandas
Author: David Arroyo Menéndez
Author-email: davidam@gnu.org
License: GPLv3
Description-Content-Type: text/markdown
Description: <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. Packaging stuff</a></li>
        </ul>
        </div>
        </div>
        
        Learning Pandas 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_create.py
        
        -   Execute one test:
        
            $ nosetests3 tests/test_create.py:TestCreate.test_series
        
        # Packaging stuff<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/damepandas-0.1.tar.gz
        
        To install from Internet:
        $ pip3 install damepandas
Keywords: pandas numpy tests
Platform: UNKNOWN
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
