-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (27 loc) · 860 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
28
29
30
31
32
#!/usr/bin/env python
from distutils.core import setup
DISTUTILS_DEBUG=True
# Set affiliated package-specific settings
PACKAGENAME = 'zsalt'
DESCRIPTION = 'Measuring redshifts from SALT longslit observations'
LONG_DESCRIPTION = """
The zsalt package is set up to provide a nearly
automatic interface to measure redshifts from spectra
observed with SALT using the Long Slit mode on RSS
"""
AUTHOR = 'Steve Crawford'
AUTHOR_EMAIL = 'crawford@saao.ac.za'
LICENSE = 'BSD'
URL = 'http://pysalt.salt.ac.za'
# VERSION should be PEP386 compatible (http://www.python.org/dev/peps/pep-0386)
VERSION = '0.1.dev'
setup(name=PACKAGENAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
requires=['PySpectrograph', 'pyraf.iraf'],
packages=['zsalt']
)