forked from lightkurve/lightkurve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (79 loc) · 2.45 KB
/
pyproject.toml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[tool.poetry]
name = "lightkurve"
version = "2.5.0"
description = "A friendly package for Kepler & TESS time series analysis in Python."
license = "MIT"
authors = ["Geert Barentsen <[email protected]>"]
readme = "README.rst"
homepage = "https://docs.lightkurve.org"
repository = "https://github.com/lightkurve/lightkurve"
keywords = ["NASA", "Kepler", "TESS", "Astronomy"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
include = ["AUTHORS.rst", "CHANGES.rst", "CONTRIBUTING.rst", "CITATION"]
[tool.poetry.urls]
"Documentation" = "https://docs.lightkurve.org"
"Bug Tracker" = "https://github.com/lightkurve/lightkurve/issues"
[tool.poetry.dependencies]
python = ">=3.8"
numpy = ">=1.18"
astropy = ">=5.0"
scipy = { version = ">=1.7", python = ">=3.8,<3.11" }
matplotlib = ">=3.1"
astroquery = ">=0.3.10"
oktopus = ">=0.1.2"
beautifulsoup4 = ">=4.6.0"
requests = ">=2.22.0"
urllib3 = { version = ">=1.23", python = ">=3.8,<4.0" } # necessary to make requests work on py310
tqdm = ">=4.25.0"
pandas = ">=1.1.4"
uncertainties = ">=3.1.4"
patsy = ">=0.5.0"
fbpca = ">=1.0"
# bokeh v2.3.2+ requirement due to https://github.com/lightkurve/lightkurve/pull/1428
bokeh = ">=2.3.2"
memoization = { version = ">=0.3.1", python = ">=3.8,<4.0" }
scikit-learn = ">=0.24.0"
s3fs = ">=2024.6.1"
[tool.poetry.dev-dependencies]
jupyterlab = ">=2.0.0"
black = ">=21.12b0"
flake8 = ">=3.8.4"
mypy = ">=0.930"
isort = { version = ">=5.6.4", python = ">=3.6,<4.0" }
pytest = ">=6.1.2"
pytest-cov = ">=2.10.1"
pytest-remotedata = ">=0.3.2"
pytest-doctestplus = ">=0.8.0"
pytest-xdist = ">=2.1.0"
jupyter = ">=1.0.0"
Sphinx = ">=4.3.0"
nbsphinx = ">=0.8.7"
numpydoc = ">=1.1.0"
sphinx-automodapi = ">=0.13"
sphinxcontrib-rawfiles = ">=0.1.1"
pydata-sphinx-theme = "==0.8.1"
pylint = ">=2.6.0"
ghp-import = ">=1.0.1"
openpyxl = ">=3.0.7"
tox = ">=3.24.5"
mistune = "<2.0.0" # Workaround for #1162 (not a true dependency)
# docutils 0.21 cannot be installed with poetry
# See https://github.com/python-poetry/poetry/issues/9293
docutils = "!=0.21"
[tool.poetry.group.dev.dependencies]
ghp-import = "^2.1.0"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [
"tests",
"src",
]