Added setup-specific files
This commit is contained in:
parent
6141d31b05
commit
1585952693
1
__init__.py
Normal file
1
__init__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
name = 'wavsource_nustar'
|
5
requirements.txt
Normal file
5
requirements.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
astropy==5.1
|
||||||
|
numpy==1.23.2
|
||||||
|
pandas==1.4.4
|
||||||
|
scipy==1.9.1
|
||||||
|
setuptools==57.4.0
|
21
setup.py
Normal file
21
setup.py
Normal file
@ -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",
|
||||||
|
),
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user