-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
23 lines (21 loc) · 832 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='dendroplot',
version='0.7.0',
description='Helper tasks for astrodendro',
long_description=long_description,
long_description_content_type="text/markdown",
author='Tony Wong',
author_email = '[email protected]',
install_requires = ['numpy',
'scipy',
'astropy',
'radio_beam',
'spectral_cube',
'astrodendro'],
url='https://github.com/tonywong94/dendroplot',
download_url = 'https://github.com/tonywong94/dendroplot/archive/refs/tags/v0.5.0.tar.gz',
packages=['dendroplot', 'dendroplot.analysis', 'dendroplot.lte',
'dendroplot.plotting'],
)