-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 988 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 988 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
from numpy.distutils.core import setup, Extension
from numpy.distutils.misc_util import Configuration
import distutils.sysconfig as ds
long_description = ''
setup(name='K2SC',
version='0.5',
description='K2 light curve detrending with Gaussian Processes.',
long_description=long_description,
author='Suzanne Aigrain',
author_email='',
url='',
package_dir={'k2sc':'src'},
scripts=['bin/k2sc','bin/k2plot','bin/k2ginfo', 'bin/k2mastify'],
packages=['k2sc'],
install_requires=["numpy", "astropy", "scipy", "george"],
license='GPLv2',
classifiers=[
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python"
]
)