7 Star 11 Fork 2

limodou / par

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
limodou 提交于 2015-07-03 15:13 . Fix ref_link bug without id
__doc__ = """
=====================
Par
=====================
:Author: Limodou <limodou@gmail.com>
About Par
----------------
Par is a simple structured text parser project. It based on pyPEG for now.
And pyPEG is also shipped with par.
It support Google Code Wiki syntax and markdown syntax. And it also extends
markdown syntax, for example, it support: definition list, table, direct link, etc.
License
------------
Par is released under BSD license.
"""
from setuptools import setup
import par
setup(name='par',
version='1.3.3',
description="A simple structured text parser project",
long_description=__doc__,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
packages = ['par'],
platforms = 'any',
keywords='parser peg',
author='limodou',
author_email='limodou@gmail.com',
url='https://github.com/limodou/par',
license='BSD',
include_package_data=True,
zip_safe=False,
)
Python
1
https://gitee.com/limodou/par.git
git@gitee.com:limodou/par.git
limodou
par
par
master

搜索帮助