Skip to content

Commit

Permalink
fix pip install . issue (thanks Shamik Ghosh and Martin Reinecke)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian-Belkner committed Jun 4, 2024
1 parent 79994c0 commit 44fd8aa
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,14 @@ def configuration(parent_package='', top_path=''):
setup(
name='delensalot',
version='0.1',
packages=['delensalot'],
packages=[
'delensalot',
'delensalot.data', 'delensalot.data.cls',
'delensalot.biases',
'delensalot.utility',
'delensalot.config', 'delensalot.config.default', 'delensalot.config.etc', 'delensalot.config.metamodel', 'delensalot.config.transformer', 'delensalot.config.validator',
'delensalot.core', 'delensalot.core.cg', 'delensalot.core.decorator', 'delensalot.core.helper', 'delensalot.core.iterator', 'delensalot.core.ivf', 'delensalot.core.opfilt', 'delensalot.core.power',
'delensalot.sims',],
data_files=[('delensalot/data/cls', ['delensalot/data/cls/FFP10_wdipole_lensedCls.dat',
'delensalot/data/cls/FFP10_wdipole_lenspotentialCls.dat',
'delensalot/data/cls/FFP10_wdipole_params.ini'])],
Expand Down

0 comments on commit 44fd8aa

Please sign in to comment.