-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (25 loc) · 933 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
from setuptools import setup, find_packages, Extension
import numpy
import glob
exec(open('_version.py').read())
'''
filterfiles = glob.glob('data/filters/*.csv')
filterfiles.extend(glob.glob('data/filters/*.txt'))
templatefiles = glob.glob('data/templates/*.fits')
atmospherefiles = glob.glob('data/atmospheres/*.fits')
footprintfiles = glob.glob('data/footprints/*.txt')
scripts = ['scripts/combineAtmosphereFiles.py']
setup(
name='fgcm_y3a1_tools',
version=__version__,
description='Tools for FGCM Y3A1',
author='Eli Rykoff, Dave Burke',
author_email='erykoff@slac.stanford.edu',
packages=find_packages(),
data_files=[('fgcm_y3a1_tools/data/filters', filterfiles),
('fgcm_y3a1_tools/data/templates',templatefiles),
('fgcm_y3a1_tools/data/atmospheres',atmospherefiles),
('fgcm_y3a1_tools/data/footprints',footprintfiles)],
scripts=scripts
)
'''