-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.21 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
from setuptools import find_packages, setup
setup(
name='ch-vars',
version='0.0.1',
packages=find_packages(exclude=['test', 'tests']),
entry_points={'console_scripts': [
'plot-var-stats = ch_vars.plot:main',
'prepare = ch_vars.prepare_models:main',
'cut-vsx = ch_vars.prepare_training_data:main',
'put-vsx = ch_vars.vsx:main',
'put-asassn-var = ch_vars.asassn:main',
'put-sdss-82-candidates = ch_vars.sdss_candidates:main',
'put-sdss-82-vars = ch_vars.sdss_vars:main',
'plot-milky-way = ch_vars.spatial_distr:plot_milky_way_entrypoint',
'plot-extragal = ch_vars.spatial_distr:plot_extragalactic_entrypoint',
'plot-map = ch_vars.spatial_distr:plot_map_entrypoint',
'plot-extinction = ch_vars.extinction:plot_extinction_entrypoint',
]},
include_package_data=True,
url='https://github.com/uiucsn/ztf-dr-vars',
install_requires=[
'astropy',
'numpy',
'clickhouse-driver',
'pandas',
'scipy',
'astroquery',
'joblib',
'gatspy',
'george',
'dustmaps'
],
license='',
author='Konstantin Malanchev',
author_email='',
description=''
)