forked from arcc/LoFASM
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (43 loc) · 1.46 KB
/
setup.py
File metadata and controls
50 lines (43 loc) · 1.46 KB
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
43
44
45
46
47
48
49
50
#!/usr/bin/python
from distutils.core import setup
from glob import glob
import os
galaxy_model_files = [os.path.basename(f) for f in glob('lofasm/galaxy_model/*.dat')]
setup(
name='lofasm',
version='0.1',
author=['Louis P. Dartez', 'Jing Luo', 'LoFASM Data Analysis Team'],
author_email='louis.dartez@gmail.com',
packages=['lofasm',
'lofasm.simulate',
'lofasm.bbx',
'lofasm.formats',
'lofasm.data_file_info',
'lofasm.calibrate',
'lofasm.handler',
'lofasm.galaxy_model'
],
package_dir={'lofasm.simulate': 'lofasm/simulate',
'lofasm.galaxy_model': 'lofasm/galaxy_model'
},
package_data={'lofasm.simulate': ['lambda_haslam408_dsds.fits.txt'],
'lofasm.galaxy_model': galaxy_model_files
},
scripts=['bin/lofasm_plot.py',
'bin/loco2bx.py',
'bin/lofasm2csv.py',
'bin/simulate_dispered_filterbank.py',
'bin/cleanfile.py',
'bin/normalize_data.py',
'bin/clean_data.py',
'bin/calibrate_plot.py',
'bin/explorebbx2d',
'bin/bbxsquish',
'bin/dynamicRescale',
'bin/lfxband',
'bin/lfxclean',
'bin/bbx2sigproc.py',
'bin/lfxinfo'],
description='LoFASM Tools',
long_description=open('README.md').read(),
)