forked from threeML/hawc_hal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (31 loc) · 1 KB
/
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
33
34
35
36
37
38
39
40
41
from setuptools import setup
setup(
name='hawc_hal',
version='1.0',
packages=['hawc_hal',
'hawc_hal/convolved_source',
'hawc_hal/healpix_handling',
'hawc_hal/interpolation',
'hawc_hal/response',
'hawc_hal/maptree',
'hawc_hal/psf_fast',
'hawc_hal/region_of_interest',
'hawc_hal/convenience_functions'],
url='https://github.com/giacomov/hawc_hal',
license='BSD-3.0',
author='Giacomo Vianello',
author_email='[email protected]',
description='Read and handle HAWC data',
install_requires=['numpy >=1.14',
'healpy',
'threeml',
'astromodels',
'pandas',
'healpy',
'six',
'astropy',
'scipy',
'matplotlib',
'numba',
'reproject']
)