-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (19 loc) · 903 Bytes
/
setup.py
File metadata and controls
24 lines (19 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup,find_packages
ld='A class to facilitate various operations for fits images with astrometric headers, modeled after the h* routines in IDL astrolib'
#https://docs.python.org/2/distutils/setupscript.html
setup(name='fitsimage',
version='1.0',
author='Russell Ryan',
author_email='rryan@stsci.edu',
keywords='image processing fits header astrometric',
description='Processing images with astrometry',
long_description=ld,
maintainer='Russell Ryan',
license='MIT',
url='https://github.com/Russell-Ryan/fitsimage',
platforms='posix',
install_requires=['numpy>1.16','astropy','pkginfo','scipy'],
classifiers=['Development Status :: 3 Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',],
packages=find_packages())