forked from mcyc/mufasa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1000 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='mufasa',
version='1.3.0',
description='MUlti-component Fitter for Astrophysical Spectral Applications',
author='Michael Chun-Yuan Chen',
author_email='[email protected]',
url='https://github.com/mcyc/mufasa',
packages=find_packages(),
install_requires=[
'numpy',
'astropy',
'matplotlib',
'scipy',
'scikit-image',
'spectral-cube',
'radio-beam',
'pvextractor',
'pandas',
'reproject',
'pyspeckit @ git+https://github.com/pyspeckit/pyspeckit@master#egg=pyspeckit',
'FITS_tools @ git+https://github.com/mcyc/FITS_tools@py312#egg=FITS_tools'
],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)