forked from astrobarn/spextractor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
21 lines (20 loc) · 894 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# imports -- standard
from setuptools import setup, find_packages
setup(name='respext',
version='0.1.dev0',
description='Automatic spectral feature extraction for supernovae',
url='https://github.com/benstahl92/respext',
author='Benjamin Stahl',
author_email='benjamin_stahl@berkeley.edu',
license='GPL-v3',
packages=setuptools.find_packages(),
scripts=['bin/interespext', 'bin/nebularespext'],
include_package_data=True,
install_requires=['numpy', 'scipy', 'pandas', 'dill', 'extinction'],
optional=['matplotlib'],
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Intended Audience :: Science/Research']
)