-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (25 loc) · 1.02 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
#! /usr/bin/env python
from setuptools import setup
setup(
name="sippv",
version='0.1.0',
description=("Add PV corrections to FITS headers "
"with existing SIP corrections"),
author="Evert Rol / GOTO observatory",
author_email="evert.rol@monash.edu",
url="http://goto-observatory.org",
license="ISC",
scripts=["scripts/wcs-addpv"],
packages=["sippv"],
package_dir={'gototile': "gototile"},
install_requires=["numpy", "scipy", "astropy"],
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries :: Python Modules',],
keywords=['astronomy', 'astrophysics', 'wcs', 'world coordinate system',
'fits'],
)