forked from astrobarn/spextractor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
22 lines (21 loc) · 969 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
# -*- coding: utf-8 -*-
import setuptools
from setuptools import setup
setup(name='spextractor', version='0.1',
description='Automatic extractor of spectral features through Gaussian Processes',
url='https://github.com/anthonyburrow/spextractor',
author='Anthony Burrow',
author_email='[email protected]',
license='GPL-v3',
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=['numpy', 'scipy', 'GPy', 'scikit-learn', 'pandas'],
optional=['matplotlib'],
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'Intended Audience :: Science/Research',
'Development Status :: 3 - Alpha']
)