File tree 5 files changed +24
-7
lines changed
5 files changed +24
-7
lines changed Original file line number Diff line number Diff line change 1
1
Change log
2
2
================================================================================
3
3
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
+
4
16
0.0.6 - 22.06.2017
5
17
--------------------------------------------------------------------------------
6
18
Original file line number Diff line number Diff line change 20
20
21
21
project = u'Flask-Excel'
22
22
copyright = u'2015-2017 Onni Software Ltd.'
23
- version = '0.0.6 '
23
+ version = '0.0.7 '
24
24
release = '0.0.7'
25
25
exclude_patterns = []
26
26
pygments_style = 'sphinx'
Original file line number Diff line number Diff line change 10
10
:Source code: http://github.com/pyexcel/Flask-Excel.git
11
11
:Issues: http://github.com/pyexcel/Flask-Excel/issues
12
12
:License: New BSD License
13
- :Development: |release |
14
13
:Released: |version |
15
14
:Generated: |today |
16
15
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ overrides: "pyexcel.yaml"
2
2
name : " Flask-Excel"
3
3
version : 0.0.7
4
4
current_version : 0.0.7
5
- release : 0.0.6
5
+ release : 0.0.7
6
6
webframework : Flask
7
7
dependencies :
8
8
- pyexcel-webio>=0.1.2
Original file line number Diff line number Diff line change 15
15
'to read and write data in different excel file formats' +
16
16
''
17
17
)
18
+ URL = 'https://github.com/pyexcel/Flask-Excel'
19
+ DOWNLOAD_URL = '%s/archive/0.0.7.tar.gz' % URL
18
20
FILES = ['README.rst' , 'CHANGELOG.rst' ]
19
21
KEYWORDS = [
20
- 'excel' ,
21
- 'python' ,
22
- 'pyexcel' ,
23
22
'xls' ,
24
23
'xlsx' ,
25
24
'ods' ,
26
25
'csv' ,
27
26
'API' ,
28
27
'Flask'
28
+ 'python'
29
29
]
30
30
31
31
CLASSIFIERS = [
@@ -104,7 +104,11 @@ def filter_out_test_code(file_handle):
104
104
found_test_code = False
105
105
yield line
106
106
else :
107
- yield line
107
+ for keyword in ['|version|' , '|today|' ]:
108
+ if keyword in line :
109
+ break
110
+ else :
111
+ yield line
108
112
109
113
110
114
if __name__ == '__main__' :
@@ -114,6 +118,8 @@ def filter_out_test_code(file_handle):
114
118
version = VERSION ,
115
119
author_email = EMAIL ,
116
120
description = DESCRIPTION ,
121
+ url = URL ,
122
+ download_url = DOWNLOAD_URL ,
117
123
long_description = read_files (* FILES ),
118
124
license = LICENSE ,
119
125
keywords = KEYWORDS ,
You can’t perform that action at this time.
0 commit comments