-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (40 loc) · 1.55 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
version = "0.22.0"
setuptools.setup(
name="lcbuilder", # Replace with your own username
version=version,
author="M. Dévora-Pajares",
author_email="mdevorapajares@protonmail.com",
description="Easy light curve builder from multiple sources",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PlanetHunders/lcbuilder",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
], zip_safe= False,
python_requires='>=3.10',
install_requires=['numpy==1.23.5',
'astropy==5.3.4',
'Cython==3.0.6',
'everest-pipeline==2.0.12',
#'eleanor==2.0.5', included with submodule
'pandas==1.5.3',
"lightkurve==2.4.2",
"photutils==1.10.0",
"pybind11==2.11.1",
"scipy==1.11.4",
"statsmodels==0.13.5",
"tess-point==0.6.1",
"foldedleastsquares==1.1.6",
'typing_extensions==4.7.1', #For astropy version
'uncertainties==3.2.2',
'urllib3==2.2.3',
"wotan==1.9",
]
)