-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (30 loc) · 891 Bytes
/
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
[tool.poetry]
name = "tess-asteroid-ml"
version = "0.1.0"
description = "Tools to create a ML-ready dataset out of TESS FFIs to study asteroids."
authors = ["Jorge Martínez-Palomera <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
scipy = "^1.9.0"
matplotlib = "^3.6.3"
lightkurve = "^2.3.0"
fitsio = "^1.2.0"
astropy = "^5.2.0"
pandas = "^1.4.4"
numpy = "^1.23.0"
tqdm = "^4.51.1"
tess-ephem = "^0.4"
tess-cloud = "^0.5.0"
astrocut = { git = "https://github.com/spacetelescope/astrocut.git" }
sbident = { git = "https://github.com/bengebre/sbident.git" }
tesscube = {git = "https://github.com/jorgemarpa/tesscube.git"}
scikit-learn = "^1.4.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
jupyterlab = "^2.2.2"
flake8 = "^3.8.1"
black = "^20.8b1"
ipympl = "^0.9.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"