File tree Expand file tree Collapse file tree 5 files changed +24
-7
lines changed Expand file tree Collapse file tree 5 files changed +24
-7
lines changed Original file line number Diff line number Diff line change 11Change log
22================================================================================
33
4+ 0.0.7 - 20.07.2017
5+ --------------------------------------------------------------------------------
6+
7+ Updated
8+ ********************************************************************************
9+
10+ #. the intialization method has been modified. please call init_excel(app)
11+ before you do anything else. This change was made in order to apply for
12+ approved flask extension status. And by doing this change, it will support
13+ multiple Flask apps and only the app that was initialized with init_excel
14+ gets Flask-Excel and other apps in your BIG app won't get affected.
15+
4160.0.6 - 22.06.2017
517--------------------------------------------------------------------------------
618
Original file line number Diff line number Diff line change 2020
2121project = u'Flask-Excel'
2222copyright = u'2015-2017 Onni Software Ltd.'
23- version = '0.0.6 '
23+ version = '0.0.7 '
2424release = '0.0.7'
2525exclude_patterns = []
2626pygments_style = 'sphinx'
Original file line number Diff line number Diff line change 1010:Source code: http://github.com/pyexcel/Flask-Excel.git
1111:Issues: http://github.com/pyexcel/Flask-Excel/issues
1212:License: New BSD License
13- :Development: |release |
1413:Released: |version |
1514:Generated: |today |
1615
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ overrides: "pyexcel.yaml"
22name : " Flask-Excel"
33version : 0.0.7
44current_version : 0.0.7
5- release : 0.0.6
5+ release : 0.0.7
66webframework : Flask
77dependencies :
88 - pyexcel-webio>=0.1.2
Original file line number Diff line number Diff line change 1515 'to read and write data in different excel file formats' +
1616 ''
1717)
18+ URL = 'https://github.com/pyexcel/Flask-Excel'
19+ DOWNLOAD_URL = '%s/archive/0.0.7.tar.gz' % URL
1820FILES = ['README.rst' , 'CHANGELOG.rst' ]
1921KEYWORDS = [
20- 'excel' ,
21- 'python' ,
22- 'pyexcel' ,
2322 'xls' ,
2423 'xlsx' ,
2524 'ods' ,
2625 'csv' ,
2726 'API' ,
2827 'Flask'
28+ 'python'
2929]
3030
3131CLASSIFIERS = [
@@ -104,7 +104,11 @@ def filter_out_test_code(file_handle):
104104 found_test_code = False
105105 yield line
106106 else :
107- yield line
107+ for keyword in ['|version|' , '|today|' ]:
108+ if keyword in line :
109+ break
110+ else :
111+ yield line
108112
109113
110114if __name__ == '__main__' :
@@ -114,6 +118,8 @@ def filter_out_test_code(file_handle):
114118 version = VERSION ,
115119 author_email = EMAIL ,
116120 description = DESCRIPTION ,
121+ url = URL ,
122+ download_url = DOWNLOAD_URL ,
117123 long_description = read_files (* FILES ),
118124 license = LICENSE ,
119125 keywords = KEYWORDS ,
You can’t perform that action at this time.
0 commit comments