-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (46 loc) · 1.6 KB
/
setup.py
File metadata and controls
56 lines (46 loc) · 1.6 KB
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
55
56
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import division, print_function
import sys
import setuptools
from setuptools import setup
sys.path.insert(0, "eleanor")
from version import __version__
long_description = \
"""
eleanor is a python package to extract target pixel files from
TESS Full Frame Images and produce systematics-corrected light curves
for any star observed by the TESS mission. In its simplest form, eleanor
takes a TIC ID, a Gaia source ID, or (RA, Dec) coordinates of a star
observed by TESS and returns, as a single object, a light curve and
accompanying target pixel data.
Read the documentation at https://adina.feinste.in/eleanor
"""
with open('requirements.txt') as f:
install_reqs = f.read().splitlines()
extras_require = {'psf': ["tensorflow"]}
setup(
name='eleanor',
version=__version__,
license='MIT',
author='Adina D. Feinstein',
author_email='adina.d.feinstein@gmail.com',
packages=[
'eleanor',
],
include_package_data=True,
url='http://github.com/afeinstein20/eleanor',
description='Source Extraction for TESS Full Frame Images',
long_description=long_description,
long_description_content_type="text/markdown",
package_data={'': ['README.md', 'LICENSE']},
install_requires=install_reqs,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.0',
],
extras_require=extras_require
)