-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
74 lines (63 loc) · 2.63 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
'''
This file contains the parameters to setup the IRDAP package.
IRDAP is a Python package to accurately reduce SPHERE-IRDIS polarimetric data.
Copyright (C) 2019 R.G. van Holstein
Full documentation: https://irdap.readthedocs.io
Feedback, questions, comments: [email protected]
https://ui.adsabs.harvard.edu/abs/2020A%26A...633A..64V/abstract
When publishing data reduced with IRDAP, please cite van Holstein et al.
(2020): https://ui.adsabs.harvard.edu/abs/2020A%26A...633A..64V/abstract.
For data in pupil-tracking mode please additionally cite van Holstein et al.
(2017): https://ui.adsabs.harvard.edu/abs/2017SPIE10400E..15V.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
'''
from setuptools import setup
version = {}
with open('irdap/version.py') as fp:
exec(fp.read(), version)
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='irdap',
version=version['__version__'],
author='R.G. van Holstein',
author_email='[email protected]',
packages=['irdap'],
url='https://irdap.readthedocs.io',
download_url='https://github.com/robvanholstein/IRDAP/archive/master.zip',
license='GNU General Public License v3.0',
description='IRDAP is a highly-automated end-to-end pipeline to reduce SPHERE-IRDIS polarimetric data',
long_description=long_description,
python_requires='>=3',
install_requires=[
"numpy >= 1.16.1",
"matplotlib >= 3.0.1",
"scipy >= 1.2.1",
"astropy >= 3.1.1",
"scikit_image >= 0.19.2",
"pandas >= 0.23.4",
"photutils >= 0.7.1"
],
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
include_package_data=True, # So that non .py files make it onto pypi, and then back !
entry_points={'console_scripts': ['irdap = irdap.__main__:main']},
)