Update docs for v051 (#525)

* docs update for v0.5.1

* update setup.py

* Update: changelog update
This commit is contained in:
陈键冬 2018-05-02 23:05:27 +08:00 committed by GitHub
parent d031a92b21
commit c20cedc751
3 changed files with 30 additions and 10 deletions

View File

@ -1,11 +1,11 @@
- [主页](/)
- 代码
- 生态系统
- [pyecharts](https://github.com/pyecharts/pyecharts)
- [pyecharts-javascripthon](https://github.com/pyecharts/pyecharts-javascripthon)
- [pyecharts-snapshot](https://github.com/pyecharts/pyecharts-snapshot)
- [jupyter-echarts-pypkg](https://github.com/pyecharts/jupyter-echarts-pypkg)
- 团队
- [开发团队](https://github.com/pyecharts)
- [团队](zh-cn/team)
- [支持 pyecharts](zh-cn/donate)
- 语言
- [中文](/zh-cn/)
- [English](/en-us/)

View File

@ -1,9 +1,17 @@
# 版本日志
* ### version 0.5.1dev
* [issue#516](https://github.com/pyecharts/pyecharts/issues/516) X 轴的分隔线应该隐藏。
* ### version 0.5.2dev
* TODO
* ### version 0.5.0 - 2018.04.28Current
* ### version 0.5.1 - 2018.05.02Current
#### Fixed
* [issue#516](https://github.com/pyecharts/pyecharts/issues/516) 修复直角坐标系图 X 轴分隔符展示效果不一致的 bug
#### Update
* [issue#518](https://github.com/pyecharts/pyecharts/issues/518) 放弃 sdist 构建方式,使用 wheel 构建项目包,并在 PYPI 上为项目添加 description
* ### version 0.5.0 - 2018.04.28
#### Added
* [issue#311](https://github.com/pyecharts/pyecharts/issues/311) 提供 Jupyter Notebook 导出为 PDF 没有图片的解决方案

View File

@ -3,6 +3,12 @@ import os
import codecs
from setuptools import setup, find_packages
# RELEASE STEPS
# $ python setup.py bdist_wheel
# $ python twine upload dist/VX.Y.Z.whl
# $ git tag -a VX.Y.Z -m "release version VX.Y.Z"
# $ git push origin VX.Y.Z
__title__ = "pyecharts"
__description__ = "Python echarts, make charting easier"
@ -11,8 +17,12 @@ __author_email__ = "chenjiandongx@qq.com"
__license__ = "MIT"
__requires__ = [
"pillow", "jinja2", "future", "jupyter-echarts-pypkg==0.1.1", "lml==0.0.2",
"pyecharts-javascripthon"
"pillow",
"jinja2",
"future",
"jupyter-echarts-pypkg==0.1.1",
"lml==0.0.2",
"pyecharts-javascripthon",
]
__keywords__ = ["Echarts", "charts", "plotting-tool"]
@ -24,8 +34,10 @@ with open(os.path.join(here, __title__, "_version.py")) as f:
def read(afile):
"""Read a file into setup"""
with codecs.open(afile, 'r', 'utf-8') as opened_file:
"""
Read a file into setup
"""
with codecs.open(afile, "r", "utf-8") as opened_file:
return opened_file.read()