forked from BDNYC/sedkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (29 loc) · 948 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
33
#! /usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
setup
except ImportError:
from distutils.core import setup
setup
from codecs import open
from os import path
setup(
name='sedkit',
version='1.0.4',
description='Spectral energy distribution construction and analysis tools',
url='https://github.com/hover2pi/sedkit',
author='Joe Filippazzo',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='astrophysics',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['numpy','astropy','bokeh','pysynphot','scipy','astroquery','dustmaps', 'pandas', 'svo_filters'],
include_package_data=True,
)