Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
adding long description
  • Loading branch information
philippeller authored Nov 26, 2024
1 parent 6572ca5 commit 39fd78f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,10 @@ def do_setup():
# ' installing PISA without OpenMP support.\n'
# )

this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

# Collect (build-able) external modules and package_data
ext_modules = [Extension('pisa.utils.llh_defs.poisson_gamma_mixtures',
sources = ['pisa/utils/llh_defs/poisson_gamma_mixtures.pyx',
Expand Down Expand Up @@ -287,6 +291,8 @@ def do_setup():
name='pisa',
version=versioneer.get_version(),
description='Tools for analyzing and drawing statistical conclusions from experimental data',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache 2.0',
author='The IceCube Collaboration',
author_email='[email protected]',
Expand Down

0 comments on commit 39fd78f

Please sign in to comment.