-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 809 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 809 Bytes
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
from distutils.core import setup
from glob import glob
import os
scripts = glob('bin/*')
#files = glob('data/*')
#dirs = [f for f in files if os.path.isdir(f)]
#files = [f for f in files if os.path.isfile(f)]
#data_files = [('data',files)]
#for d in dirs:
# data_files.append((d, glob(os.path.join(d,'*'))))
setup(
name='CSPlib',
version='0.1.0',
author='Chris Burns',
author_email='cburns@carnegiescience.edu',
packages=['CSPlib'],
scripts=scripts,
package_data={'CSPlib':['data/*','data/*/*']},
#data_files=data_files,
description='CSP-related python code and scripts',
requires=[
'astropy',
'pymysql',
'reproject',
'scipy',
'matplotlib',
'numpy',
'imagematch',
],
)