-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 891 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
23
24
25
26
27
28
29
30
#from distutils.core import setup
from setuptools import setup#, find_packages
with open("README.md", "r") as fh:
## skip the HTML, which doesn't work on PyPI
long_description = "".join(fh.readlines()[4:])
setup(
name='tshirt',
version='0.4.1',
author='Everett Schlawin, Kayli Glidic',
packages=['tshirt','tshirt.pipeline',
'tshirt.pipeline.instrument_specific'],
url="https://github.com/eas342/tshirt",
description="A package to analyze time series data, especially for exoplanets",
include_package_data=True,
install_requires=[
"numpy>=1.15",
"scipy>=1.1.0",
"astropy>=2.0",
"tqdm>=4.46.0",
"photutils>=0.4.1",
"bokeh>=1.4.0",
"pytest",
"celerite2",
"matplotlib"
],
long_description=long_description,
long_description_content_type='text/markdown'
)