File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -229,6 +229,10 @@ def do_setup():
229
229
# ' installing PISA without OpenMP support.\n'
230
230
# )
231
231
232
+ this_directory = os .path .abspath (os .path .dirname (__file__ ))
233
+ with open (os .path .join (this_directory , 'README.md' ), encoding = 'utf-8' ) as f :
234
+ long_description = f .read ()
235
+
232
236
# Collect (build-able) external modules and package_data
233
237
ext_modules = [Extension ('pisa.utils.llh_defs.poisson_gamma_mixtures' ,
234
238
sources = ['pisa/utils/llh_defs/poisson_gamma_mixtures.pyx' ,
@@ -287,6 +291,8 @@ def do_setup():
287
291
name = 'pisa' ,
288
292
version = versioneer .get_version (),
289
293
description = 'Tools for analyzing and drawing statistical conclusions from experimental data' ,
294
+ long_description = long_description ,
295
+ long_description_content_type = 'text/markdown' ,
290
296
license = 'Apache 2.0' ,
291
297
author = 'The IceCube Collaboration' ,
292
298
author_email = 'analysis@icecube.wisc.edu' ,
You can’t perform that action at this time.
0 commit comments