meta.py 476 字节
Newer Older
HansBug's avatar
HansBug 已提交
1 2 3 4 5
"""
Overview:
    Meta information for treevalue package.
"""

HansBug's avatar
HansBug 已提交
6
#: Title of this project (should be `treevalue`).
HansBug's avatar
HansBug 已提交
7
__TITLE__ = "treevalue"
HansBug's avatar
HansBug 已提交
8 9

#: Version of this project.
HansBug's avatar
HansBug 已提交
10
__VERSION__ = "1.4.2"
HansBug's avatar
HansBug 已提交
11 12

#: Short description of the project, will be included in ``setup.py``.
13
__DESCRIPTION__ = 'A flexible, generalized tree-based data structure.'
HansBug's avatar
HansBug 已提交
14 15

#: Author of this project.
HansBug's avatar
HansBug 已提交
16
__AUTHOR__ = "HansBug, DI-engine's Contributors"
HansBug's avatar
HansBug 已提交
17 18

#: Email of the authors'.
HansBug's avatar
HansBug 已提交
19
__AUTHOR_EMAIL__ = "hansbug@buaa.edu.cn"