-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
32 lines (29 loc) · 903 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
import os
import glob
from distutils.core import setup
scripts= ['des-query',
'des-sync-red',
'des-sync-coadd',
'des-rsync-red',
'des-rsync-coadd',
'des-rsync-meds',
'des-rsync-coadd-se-psfs',
'des-fits2table',
'des-red-expnames',
'get-coadd-info-by-release',
'get-coadd-info-by-run',
'get-coadd-srclist',
'get-coadd-srcruns-by-run',
'get-coadd-srcruns-by-release',
'get-release-filelist',
'get-red-info-by-release',
'get-release-runs']
scripts=[os.path.join('desdb','bin',s) for s in scripts]
setup(name="desdb",
version="0.1.0",
description="DES file and database access",
license = "GPL",
author="Erin Scott Sheldon",
author_email="erin.sheldon@gmail.com",
packages=['desdb'],
scripts=scripts)