forked from kmhess/SoFiA-image-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup
setup(
name='sofia_image_pipeline',
version='1.3.4',
description='SIP takes a SoFiA generated source catalog and produce images for publication or quick inspection. Images include HI contours overlaid on multiwavelength images, HI moment maps, pixel-by-pixel SNR maps, pv-diagrams with SoFiA mask, and spectra with and without noise.',
url='https://github.com/kmhess/SoFiA-image-pipeline',
author='Kelley M. Hess',
author_email='kmhess.astro@gmail.com',
packages=[
"src",
"src.modules",
],
install_requires=[
"astropy >= 5.0.2",
"astroquery >= 0.4.7",
"matplotlib >= 3.5.1",
"numpy >= 1.22.0",
"Pillow >= 10.0.1",
"pvextractor >= 0.4",
"requests >= 2.31.0",
"setuptools >= 65.5.1",
"sphinx_rtd_theme >= 1.0.0",
"xmltodict >= 0.12.0"
],
classifiers=[
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
'sofia_image_pipeline=src.image_pipeline:main',
'download_usr_fig=src.download_usr_fig:main'
],
},
)