-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
42 lines (38 loc) · 1.29 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
36
37
38
39
40
41
42
from setuptools import setup, find_packages
import spimple
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
'omegaconf',
'katbeam',
'pytest >= 6.2.2',
'pyscilog >= 0.1.2',
'codex-africanus[complete]',
'dask-ms[xarray]',
]
setup(
name='spimple',
version=spimple.__version__,
author="Landman Bester",
author_email="[email protected]",
description="Radio astronomy image post-processing tools",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/landmanbester/spimple",
packages=find_packages(),
python_requires='>=3.8',
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'spimple-imconv=spimple.apps.image_convolver:image_convolver',
'spimple-spifit=spimple.apps.spi_fitter:spi_fitter',
'spimple-binterp=spimple.apps.power_beam_maker:power_beam_maker'
]
}
,
)