-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
27 lines (25 loc) · 1016 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
entry_points = {'console_scripts': [
'vst-pawplot = surveytools.quicklook:vst_pawplot_main',
'vphas-quicklook = surveytools.quicklook:vphas_quicklook_main',
'vphas-filenames = surveytools.footprint:vphas_filenames_main',
'vphas-offset-catalogue = surveytools.catalogue:vphas_offset_catalogue_main',
'vphas-index-offset-catalogues = surveytools.catalogue:vphas_index_offset_catalogues_main',
'vphas-tile-merge = surveytools.tiling:vphas_tile_merge_main'
]}
setup(name='surveytools',
version='0.1',
description='Tools for the VPHAS+ astronomy survey.',
author='Geert Barentsen',
license='MIT',
url='http://www.vphas.eu',
packages=['surveytools'],
install_requires=['numpy',
'matplotlib',
'imageio>=1.0',
'astropy',
'photutils',
'pyraf'],
entry_points=entry_points,
)