Skip to content

Commit 39fd78f

Browse files
authored
Update setup.py
adding long description
1 parent 6572ca5 commit 39fd78f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup.py

+6
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,10 @@ def do_setup():
229229
# ' installing PISA without OpenMP support.\n'
230230
# )
231231

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+
232236
# Collect (build-able) external modules and package_data
233237
ext_modules = [Extension('pisa.utils.llh_defs.poisson_gamma_mixtures',
234238
sources = ['pisa/utils/llh_defs/poisson_gamma_mixtures.pyx',
@@ -287,6 +291,8 @@ def do_setup():
287291
name='pisa',
288292
version=versioneer.get_version(),
289293
description='Tools for analyzing and drawing statistical conclusions from experimental data',
294+
long_description=long_description,
295+
long_description_content_type='text/markdown',
290296
license='Apache 2.0',
291297
author='The IceCube Collaboration',
292298
author_email='analysis@icecube.wisc.edu',

0 commit comments

Comments
 (0)