-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.03 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
[tool.poetry]
name = "tess-ephem"
version = "0.5.0"
description = "Where are Solar System objects located in TESS FFI data?"
license = "MIT"
authors = ["Geert Barentsen <[email protected]>",
"Christina Hedges",
"Jorge Martinez-Palomera",
"Jessie Dotson",
"Amy Tuson"]
readme = "README.rst"
homepage = "https://github.com/SSDataLab/tess-ephem"
repository = "https://github.com/SSDataLab/tess-ephem"
keywords = ["NASA, TESS, Astronomy"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
[tool.poetry.dependencies]
python = "^3.9"
scipy = "^1.9.0"
astroquery = "0.4.6"
numpy = "^1.23.0"
pandas = "^1.4.4"
astropy = "^5.2.0"
tesswcs = "^1.1.3"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^6.1.2"
jupyterlab = "^2.2.9"
matplotlib = "^3.3.3"
black = "^24.8.0"
isort = "^5.13.2"
flake8 = "^7.1.1"
mypy = "^1.11.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"