forked from ECGonzales/SEDkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 920 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 920 Bytes
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
# -*- 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='0.1.0',
description='Spectral energy distribution creation and analysis tools that work with the astrodbkit module.',
url='https://github.com/hover2pi/SEDkit.git',
author='Joe Filippazzo',
author_email='jcfilippazzo@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
keywords='astrophysics',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['numpy','astropy','matplotlib','astrodbkit','emcee','pysynphot'],
)