File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -251,10 +251,16 @@ def run(self):
251
251
self ._install_extensions ()
252
252
253
253
254
+ with open ("README.md" ) as readme :
255
+ long_description = readme .read ()
256
+
257
+
254
258
setup (
255
259
name = 'azure-functions-worker' ,
256
- version = '1.1.0 ' ,
260
+ version = '1.1.1 ' ,
257
261
description = 'Python Language Worker for Azure Functions Host' ,
262
+ long_description = long_description ,
263
+ long_description_content_type = 'text/markdown' ,
258
264
classifiers = [
259
265
'License :: OSI Approved :: MIT License' ,
260
266
'Intended Audience :: Developers' ,
@@ -279,7 +285,7 @@ def run(self):
279
285
],
280
286
extras_require = {
281
287
'dev' : [
282
- 'azure-functions==1.2.0 ' ,
288
+ 'azure-functions==1.2.1 ' ,
283
289
'flake8~=3.7.9' ,
284
290
'mypy' ,
285
291
'pytest' ,
You can’t perform that action at this time.
0 commit comments