-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
61 lines (55 loc) · 1.49 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
[tool.poetry]
name = "psfmachine"
version = "1.1.4"
description = "Tool to perform fast PSF photometry of primary and background targets from Kepler/K2 Target Pixel Files"
authors = ["Christina Hedges <[email protected]>",
"Jorge Martinez-Palomera <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://ssdatalab.github.io/psfmachine/"
repository = "https://github.com/ssdatalab/psfmachine"
keywords = ["NASA, Kepler, Astronomy"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
[tool.coverage.paths]
source = ["src"]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.19.4"
scipy = "^1.5.4"
astropy = "^5.2"
tqdm = "^4.54.0"
matplotlib = "^3.3.3"
patsy = "^0.5.1"
pyia = "^1.2"
lightkurve = "^2.0.4"
corner = "^2.1.0"
fitsio = "^1.1.3"
jedi = "0.17.2"
pandas = "^1.1"
photutils = "^1.1.0"
diskcache = "^5.3.0"
imageio = "^2.9.0"
imageio-ffmpeg = "^0.4.5"
kbackground = "^0.1.9"
fbpca = "^1.0"
ipywidgets = "^7.6.3"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
jupyterlab = "^2.2.2"
line-profiler = "^3.0.2"
memory-profiler = "^0.58.0"
flake8 = "^3.8.1"
black = "^20.8b1"
exoplanet = "^0.4.4"
ipywidgets = "^7.6.3"
mkdocs = "1.2.3"
mkdocs-material = "^7.0.6"
mkdocstrings = {version = "^0.15.0", extras = ["numpy-style"]}
pytkdocs = {version = "^0.11.0", extras = ["numpy-style"]}
mkdocs-jupyter = "^0.17.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"