Metadata-Version: 1.0
Name: sample-annn-pkg
Version: 0.0.13
Summary: sample_annn_pkg description
Home-page: UNKNOWN
Author: hoge
Author-email: fuga@email.com
License: Copyright (c) 2017, laplaciannin102

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Description: sample_annn_pkg
        ===============
        
        -  author: laplaciannin102
        
        --------------
        
        Table of Contents
        -----------------
        
        -  `sample_annn_pkg`_
        
           -  `Table of Contents`_
           -  `How to install`_
           -  `Github repository`_
           -  `PyPI repository`_
        
              -  `TestPyPI`_
              -  `PyPI`_
        
           -  `Directory structure`_
           -  `Easy installation sample`_
           -  `How to upload pypi package`_
        
        --------------
        
        How to install
        --------------
        
        .. code:: shell
        
           pip install sample_annn_pkg
        
        Github repository
        -----------------
        
        -  https://github.com/laplaciannin102/sample_annn_pkg
        
        PyPI repository
        ---------------
        
        TestPyPI
        ~~~~~~~~
        
        -  https://pypi.org/project/sample_annn_pkg/
        
        PyPI
        ~~~~
        
        -  https://test.pypi.org/project/sample_annn_pkg/
        
        --------------
        
        Directory structure
        -------------------
        
        ::
        
           sample_annn_pkg
           ├── .gitignore
           ├── LICENSE
           ├── MANIFEST.in
           ├── README.md
           ├── README.rst
           ├── sample_annn_pkg
           │   ├── __init__.py
           │   ├── sample_main_module.py
           │   └── sample_sub_module.py
           ├── requirements.txt
           └── setup.py
        
        Easy installation sample
        ------------------------
        
        -  command
        
        .. code:: shell
        
           >> git clone https://github.com/laplaciannin102/sample_annn_pkg.git
           >> cd sample_annn_pkg
           >> python setup.py sdist upload -r testpypi
           >> pip install --index-url https://test.pypi.org/simple/ sample_annn_pkg
        
        -  python
        
        .. code:: python
        
           >>> import sample_annn_pkg as sap
           >>> sap.func02()
           # success!!
           # poyo
        
        --------------
        
        How to upload pypi package
        --------------------------
        
        -  access to this URL
        
           -  https://github.com/laplaciannin102/sample_annn_pkg/blob/master/docs/how_to_upload_pypi_pkg.md
        
        .. _sample_annn_pkg: #sample_annn_pkg
        .. _Table of Contents: #table-of-contents
        .. _How to install: #how-to-install
        .. _Github repository: #github-repository
        .. _PyPI repository: #pypi-repository
        .. _TestPyPI: #testpypi
        .. _PyPI: #pypi
        .. _Directory structure: #directory-structure
        .. _Easy installation sample: #easy-installation-sample
        .. _How to upload pypi package: #how-to-upload-pypi-package
Platform: UNKNOWN
