-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·65 lines (59 loc) · 1.78 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
#!/usr/bin/env python
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
VERSION = '0.1.0'
DESCRIPTION = "data reduction pipelines for infrared images from research-grade telescopes"
CLASSIFIERS = list(filter(None, map(str.strip,
"""
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries :: Python Modules
""".splitlines())))
install_requires = [
'numpy',
'matplotlib',
'scipy',
'astropy',
'astroquery',
'astroscrappy',
'pysynphot',
'image_registration @ git+https://github.com/keflavich/image_registration.git',
'sphinx',
'nbsphinx',
'pytest',
'pyyaml',
'setuptools-git',
]
setup(
name="nirc2_reduce",
version=VERSION,
description=DESCRIPTION,
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=CLASSIFIERS,
author="Ned Molter",
author_email="[email protected]",
url="https://github.com/emolter/nirc2_reduce",
python_requires='>=3.6',
license="GPL3",
keywords='planetary astronomy keck infrared detector',
packages=find_packages(include=['nirc2_reduce', 'nirc2_reduce.*']),
package_data = {
'nirc2_reduce': ['data/*.fits'],
},
py_modules=['nirc2_reduce'],
platforms=['any'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
install_requires=install_requires,
)