-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
37 lines (32 loc) · 1.1 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
"""
.. module:: setup
:synopsis: This script is used to setup the pip package.
.. moduleauthor:: Chase Million <[email protected]>
"""
from __future__ import absolute_import
from __future__ import unicode_literals
from os import path
# Always prefer setuptools over distutils
from setuptools import setup
# To use a consistent encoding
from gPhoton import __version__
HERE = path.abspath(path.dirname(__file__))
setup(
name='gPhoton',
version=__version__,
description='The GALEX photon project.',
url='https://github.com/cmillion/gPhoton',
author='Chase Million, et al.',
author_email='[email protected]',
zip_safe=False,
license='AURA',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
],
keywords=['astronomy', 'galex', 'photometry', 'ultraviolet'],
scripts=['bin/gPipeline', 'bin/gAperture', 'bin/gFind', 'bin/gMap'],
packages=['gPhoton', 'gPhoton.cal'],
install_requires=['numpy', 'scipy', 'requests>=2.4.0', 'pandas', 'astropy>=1.3', 'future'],
)