Metadata-Version: 2.1
Name: python-learning-demopackage
Version: 1.0.0
Summary: a demo package developed for python study
Home-page: https://www.baidu.com
Author: ahoo
Author-email: ahoo@gmail.com
License: MIT
Description-Content-Type: text/x-rst
License-File: LICENSE.txt

================================
Why should I use this?  level-1
================================

Title2  level-2
======================

topic3  level-3
^^^^^^^^^^^^^^^^^^^^^^

Topic4   level-4
-------------------

以上标注标题符号长度，要长于文本的长度。

**AAA** 加粗

*test* 斜体


以下三个前置符号都可以表示列表，一二级通过缩进来表示，并且列表每行之间需要有空格

- 列表1

    - 子列表1

    * 子列表2

    + 子列表3

* 列表2

+ **列表3**


::

    import testsublib

    print(testsublib.submodule.sub_name)

    def sentMessage():
        print("message from sublib:", testsublib.submodule.sub_name)



