diff --git a/README.md b/README.md index 4cfd582..58d9256 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# wavsource_nustar +# nuwavsource diff --git a/wavsource_nustar.py b/nuwavsource.py similarity index 99% rename from wavsource_nustar.py rename to nuwavsource.py index de5e42e..fbe46ca 100644 --- a/wavsource_nustar.py +++ b/nuwavsource.py @@ -108,7 +108,6 @@ def fill_poisson(array, size_input=32): mask[idx] = False size *= 2 return output - def mirror(array): size = array.shape[0] output = np.tile(array,(3,3)) diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..7a434ee --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[metadata] +description-file=README.md +license_files=LICENSE.md \ No newline at end of file diff --git a/setup.py b/setup.py index eaf3c31..a1038c3 100644 --- a/setup.py +++ b/setup.py @@ -4,9 +4,9 @@ with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( - name="wavsource_nustar", + name="nuwavsource", version="1.0.0", - author="Andrey_Mukhin", + author="Andrey Mukhin", author_email="amukhin@phystech.edu", description="A package for source exclusion in NuStar observation data using wavelet decomposition", long_description=long_description, @@ -18,4 +18,11 @@ setuptools.setup( "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ), + install_requires = [ + 'astropy==5.1', + 'numpy==1.23.2', + 'pandas==1.4.4', + 'scipy==1.9.1', + 'setuptools==57.4.0', + ] ) \ No newline at end of file