-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
23 lines (22 loc) · 942 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
from setuptools import setup
from sky_area import __version__ as version
setup(
name='skyarea',
packages=['sky_area'],
scripts=['bin/run_sky_area'],
version=version,
description='Compute credible regions on the sky from RA-DEC MCMC samples',
author='Will M. Farr',
author_email='[email protected]',
url='http://farr.github.io/skyarea/',
license='MIT',
keywords='MCMC credible regions skymap LIGO',
install_requires=['astropy', 'numpy', 'scipy', 'healpy', 'six'],
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Visualization']
)