Skip to content

Commit

Permalink
install_requires on setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
damonge committed Aug 13, 2021
1 parent 8b95669 commit 46f25ab
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,6 @@ def run(self):
'Operating System :: Unix',
'Operating System :: MacOS'],
packages=['pymaster'],
install_requires=['scipy', 'numpy', 'healpy'],
ext_modules=[_nmtlib],
)

1 comment on commit 46f25ab

@PfPixieNasa2669
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

EXTRA_DIST = doc README.md

lib_LTLIBRARIES = libnmt.la
libnmt_la_SOURCES = src/utils.c src/flatsky_utils.c src/healpix_extra.c src/nmt_bins.c src/nmt_bins_flat.c src/nmt_field.c src/nmt_field_flat.c src/nmt_mask.c src/nmt_mask_flat.c src/nmt_master.c src/nmt_covar.c src/nmt_master_flat.c src/nmt_covar_flat.c src/nmt_io.c
libnmt_la_CPPFLAGS = $(OPENMP_CFLAGS) -I./src/
libnmt_la_LDFLAGS = $(OPENMP_CFLAGS) @fftw_thread_type@ -lfftw3 -lgsl -lgslcblas -lcfitsio @libsharp_libs@ -lm

include_HEADERS = src/namaster.h

bin_PROGRAMS = namaster
namaster_SOURCES = src/nmt_main.c
namaster_CPPFLAGS = $(OPENMP_CFLAGS) -I./src/
namaster_LDFLAGS = $(OPENMP_CFLAGS) -L./ -lnmt @fftw_thread_type@ -lfftw3 -lgsl -lgslcblas -lcfitsio @libsharp_libs@ -lm

noinst_PROGRAMS = test/check_nmt
TESTS = test/check_nmt
test_check_nmt_SOURCES = test/nmt_test.c test/nmt_test_utils.c test/nmt_test_fsk.c test/nmt_test_hpex.c test/nmt_test_bins.c test/nmt_test_field.c test/nmt_test_master.c test/nmt_test_covar.c test/nmt_test_bins_flat.c test/nmt_test_field_flat.c test/nmt_test_master_flat.c test/nmt_test_covar_flat.c test/nmt_test_mask.c test/nmt_test_field_car.c
test_check_nmt_CPPFLAGS = $(OPENMP_CFLAGS) -I./test/ -I./src/
test_check_nmt_LDFLAGS = $(OPENMP_CFLAGS) -L./ -lnmt @fftw_thread_type@ -lfftw3 -lgsl -lgslcblas -lcfitsio @libsharp_libs@ -lm

Please sign in to comment.