-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
54 lines (45 loc) · 1.48 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import division, print_function
import os
import sys
from setuptools import setup
sys.path.insert(0, "stella")
from version import __version__
long_description = \
"""
stella is a python package to identify and characterize flares in
TESS short-cadence data using a convolutional neural network. In its
simplest form, stella takes an array of light curves and predicts where
flares are using the models provided in Feinstein et al. submitted and
returns predictions.
Read the documentation at https://adina.feinste.in/stella
Changes to v0.1.0 (2020-05-18):
*
"""
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
setup(
name='stella',
version=__version__,
license='MIT',
author='Adina D. Feinstein',
author_email='[email protected]',
packages=[
'stella',
],
include_package_data=True,
url='http://github.com/afeinstein20/stella',
description='For finding flares in TESS 2-min data with a CNN',
long_description=long_description,
long_description_content_type="text/markdown",
package_data={'': ['README.md', 'LICENSE']},
install_requires=install_requires,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
],
)