-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (46 loc) · 1.27 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
[tool.poetry]
name = "tess-locator"
version = "0.6.0"
description = "Fast offline queries of TESS FFI positions and filenames."
license = "MIT"
authors = ["Geert Barentsen <[email protected]>",
"Christina Hedges",
"Jessie Dotson"]
readme = "README.rst"
homepage = "https://github.com/SSDataLab/tess-locator"
repository = "https://github.com/SSDataLab/tess-locator"
keywords = ["NASA, TESS, Astronomy"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
[tool.poetry.dependencies]
python = "^3.8"
astropy = "^5.2.0"
pandas = "^1.4.4"
numpy = "^1.23.0"
tqdm = "^4.51.1"
attrs = "^23.1.0"
tess-point = "^0.8"
# tess-cloud = "^0.5"
[tool.poetry.dev-dependencies]
pytest = "^6.0"
astroquery = "^0.4.1"
black = {version = "^20.8b1", allow-prereleases = true}
flake8 = "^3.8.4"
pytest-cov = "^2.10.1"
isort = "^5.6.4"
mypy = "^0.790"
line-profiler = "^3.1.0"
jupyterlab = "^2.2.9"
pytest-xdist = "^2.1.0"
pre-commit = "^2.8.2"
Pygments = "^2.9.0"
mkdocs = "^1.1.2"
mkdocs-material = "^7.1.4"
mkdocstrings = "^0.15.0"
pytkdocs = {version = "^0.11.1", extras = ["numpy-style"]}
#tess-cloud = {path = "../tess-cloud", develop = true}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"