File tree Expand file tree Collapse file tree 4 files changed +28
-2
lines changed Expand file tree Collapse file tree 4 files changed +28
-2
lines changed Original file line number Diff line number Diff line change
1
+ CHANGE Log
2
+ ================================================================================
3
+
4
+ 0.0.2 - 27-Apr-2016
5
+ --------------------------------------------------------------------------------
6
+
7
+ Updated
8
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
9
+
10
+ #. Bug fix `issue 1 <https://github.com/chfw/moban/issues/1 >`_, failed to save utf-8 characters
11
+
12
+
13
+ 0.0.1 - 23-Mar-2016
14
+ --------------------------------------------------------------------------------
15
+
16
+ Initial release
Original file line number Diff line number Diff line change
1
+ include README.rst
2
+ include CHANGELOG.rst
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ Tutorial
19
19
level-5-custom-configuration/README.rst
20
20
level-6-complex-configuration/README.rst
21
21
22
+ .. include :: ../CHANGELOG.rst
23
+
22
24
Indices and tables
23
25
==================
24
26
Original file line number Diff line number Diff line change 3
3
4
4
NAME = 'moban'
5
5
AUTHOR = 'C.W.'
6
- VERSION = '0.0.1 '
6
+ VERSION = '0.0.2 '
7
7
EMAIL = "wangc_2011 (at) hotmail.com"
8
8
LICENSE = 'MIT'
9
9
ENTRY_POINTS = {
21
21
]
22
22
23
23
24
+ def read_files (* files ):
25
+ text = ""
26
+ for single_file in files :
27
+ text = text + read (single_file )
28
+ return text
29
+
24
30
def read (afile ):
25
31
with open (afile , 'r' ) as opened_file :
26
32
return opened_file .read ()
@@ -36,7 +42,7 @@ def read(afile):
36
42
install_requires = INSTALL_REQUIRES ,
37
43
packages = PACKAGES ,
38
44
include_package_data = True ,
39
- long_description = read ('README.rst' ),
45
+ long_description = read_files ('README.rst' , 'CHANGELOG .rst' ),
40
46
zip_safe = False ,
41
47
tests_require = ['nose' ],
42
48
license = LICENSE ,
You can’t perform that action at this time.
0 commit comments