From 1585952693facaaf9f676ba6db0326c697b59259 Mon Sep 17 00:00:00 2001 From: Andrey Mukhin Date: Tue, 6 Sep 2022 17:03:04 +0300 Subject: [PATCH] Added setup-specific files --- __init__.py | 1 + requirements.txt | 5 +++++ setup.py | 21 +++++++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 __init__.py create mode 100644 requirements.txt create mode 100644 setup.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..ef979e0 --- /dev/null +++ b/__init__.py @@ -0,0 +1 @@ +name = 'wavsource_nustar' \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..90cd864 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +astropy==5.1 +numpy==1.23.2 +pandas==1.4.4 +scipy==1.9.1 +setuptools==57.4.0 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..eaf3c31 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="wavsource_nustar", + version="1.0.0", + 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, + long_description_content_type="text/markdown", + url="https://github.com/Andreyousan/wavsource_nustar", + packages=setuptools.find_packages(), + classifiers=( + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ), +) \ No newline at end of file