-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (25 loc) · 848 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
from setuptools import setup
setuptools.setup(
name='maskmoment',
version='1.2.2',
description='Masked moments of radio data cubes',
long_description=long_description,
long_description_content_type="text/markdown",
author='Tony Wong',
author_email = '[email protected]',
install_requires = ['numpy>=1.8.0',
'scipy',
'astropy',
'radio_beam',
'spectral_cube'],
url='https://github.com/tonywong94/maskmoment',
packages=['maskmoment'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)