diff --git a/requirements.txt b/requirements.txt index a840f31b2b5d3ed6d1c4914138b9acb7d7f1fc85..96d7e6ea3f2d1f2363ed2dda0f18d42e44483067 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,4 +8,4 @@ tqdm bashplotlib peakutils pathos -pycuda +lalsuite diff --git a/setup.cfg b/setup.cfg index bb7f7ce70e4ed5ed556eeb153b8a9119c9304dde..3bcbc7da86dd8e130d978afb64aa17182ea22882 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -license_file = LICENSE.txt +license_file = LICENSE [flake8] exclude = .git,docs,build,dist,tests,*__init__.py diff --git a/setup.py b/setup.py index 362ab3b1d2c99923f65f8a74c8034bfc876b1dce..f39f599fea8fc5edf676aa4cf4c01195a76a9657 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,10 @@ setup( version="0.2", author="Gregory Ashton", author_email="gregory.ashton@ligo.org", - packages=find_packages(where="pyfstat"), + description="python wrappers for lalpulsar F-statistic code", + long_description=long_description, + long_description_content_type='text/markdown', + packages=find_packages(), include_package_data=True, package_data={ "pyfstat": [ @@ -31,5 +34,6 @@ setup( "bashplotlib", "peakutils", "pathos", + "lalsuite", ], )