forked from meerklass/museek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 758 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
34
from setuptools import setup, find_packages
setup(
name='museek',
version='0.0.1',
description='A flexible and easy-to-extend data processing pipeline for multi-instrument autocorrelation radio experiments',
author='',
author_email='',
packages=find_packages(),
entry_points={
'console_scripts': [
'museek = ivory.cli.main:run',
]
},
install_requires=[
'numpy==1.23.3',
'scipy',
'Cython',
'h5py',
'mock',
'numba',
'pyephem',
'six',
'healpy',
'astropy',
'scikit-learn',
'katdal',
'sphinx'
],
classifiers=[
'GPLv3',
'Programming Language :: Python :: 3.10',
],
)