setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 41
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 31
dl 0
loc 41
rs 10
c 0
b 0
f 0
1
from setuptools import setup
2
3
setup(
4
5
    name='hawc_hal',
6
7
    version='1.0',
8
9
    packages=['hawc_hal',
10
              'hawc_hal/convolved_source',
11
              'hawc_hal/healpix_handling',
12
              'hawc_hal/interpolation',
13
              'hawc_hal/response',
14
              'hawc_hal/maptree',
15
              'hawc_hal/psf_fast',
16
              'hawc_hal/region_of_interest',
17
              'hawc_hal/convenience_functions'],
18
19
    url='https://github.com/giacomov/hawc_hal',
20
21
    license='BSD-3.0',
22
23
    author='Giacomo Vianello',
24
25
    author_email='[email protected]',
26
27
    description='Read and handle HAWC data',
28
29
    install_requires=['numpy >=1.14',
30
                      'healpy',
31
                      'threeml',
32
                      'astromodels',
33
                      'pandas',
34
                      'healpy',
35
                      'six',
36
                      'astropy',
37
                      'scipy',
38
                      'matplotlib',
39
                      'numba',
40
                      'reproject']
41
)
42