소스 검색

Bump version to 0.4.dev; also update README and setup.py.

tags/v0.3.1
Ben Kurtovic 10 년 전
부모
커밋
c7617c3eb3
3개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제
  1. +4
    -2
      README.rst
  2. +1
    -1
      mwparserfromhell/__init__.py
  3. +1
    -0
      setup.py

+ 4
- 2
README.rst 파일 보기

@@ -9,8 +9,8 @@ mwparserfromhell
that provides an easy-to-use and outrageously powerful parser for MediaWiki_ that provides an easy-to-use and outrageously powerful parser for MediaWiki_
wikicode. It supports Python 2 and Python 3. wikicode. It supports Python 2 and Python 3.


Developed by Earwig_ with help from `Σ`_. Full documentation is available on
ReadTheDocs_.
Developed by Earwig_ with contributions from `Σ`_, Legoktm_, and others.
Full documentation is available on ReadTheDocs_. Development occurs on GitHub_.


Installation Installation
------------ ------------
@@ -148,6 +148,8 @@ following code (via the API_)::
.. _ReadTheDocs: http://mwparserfromhell.readthedocs.org .. _ReadTheDocs: http://mwparserfromhell.readthedocs.org
.. _Earwig: http://en.wikipedia.org/wiki/User:The_Earwig .. _Earwig: http://en.wikipedia.org/wiki/User:The_Earwig
.. _Σ: http://en.wikipedia.org/wiki/User:%CE%A3 .. _Σ: http://en.wikipedia.org/wiki/User:%CE%A3
.. _Legoktm: http://en.wikipedia.org/wiki/User:Legoktm
.. _GitHub: https://github.com/earwig/mwparserfromhell
.. _Python Package Index: http://pypi.python.org .. _Python Package Index: http://pypi.python.org
.. _StackOverflow question: http://stackoverflow.com/questions/2817869/error-unable-to-find-vcvarsall-bat .. _StackOverflow question: http://stackoverflow.com/questions/2817869/error-unable-to-find-vcvarsall-bat
.. _get pip: http://pypi.python.org/pypi/pip .. _get pip: http://pypi.python.org/pypi/pip


+ 1
- 1
mwparserfromhell/__init__.py 파일 보기

@@ -31,7 +31,7 @@ from __future__ import unicode_literals
__author__ = "Ben Kurtovic" __author__ = "Ben Kurtovic"
__copyright__ = "Copyright (C) 2012, 2013 Ben Kurtovic" __copyright__ = "Copyright (C) 2012, 2013 Ben Kurtovic"
__license__ = "MIT License" __license__ = "MIT License"
__version__ = "0.3"
__version__ = "0.4.dev"
__email__ = "ben.kurtovic@verizon.net" __email__ = "ben.kurtovic@verizon.net"


from . import (compat, definitions, nodes, parser, smart_list, string_mixin, from . import (compat, definitions, nodes, parser, smart_list, string_mixin,


+ 1
- 0
setup.py 파일 보기

@@ -53,6 +53,7 @@ setup(
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.3",
"Topic :: Text Processing :: Markup" "Topic :: Text Processing :: Markup"
], ],


불러오는 중...
취소
저장