-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 677 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (28 loc) · 677 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
'''
Created on Jun 11, 2012
@author: fmertens
'''
import libwise
import glob
from setuptools import setup, find_packages
setup(
name='libwise',
version='%s' % libwise.get_version(),
description='Various utilities for the WISE package',
url='https://github.com/flomertens/libwise',
author='Florent Mertens',
author_email='flomertens@gmail.com',
license='GPL2',
include_package_data=True,
packages=find_packages(),
scripts=glob.glob('scripts/*'),
install_requires=[
'numpy',
'scipy',
'scikit-image',
'astropy',
'matplotlib',
'pyregion',
'uncertainties',
'pymorph']
)