-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
58 lines (54 loc) · 1.55 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
[tool.poetry]
name = "tess-cloud"
version = "0.5.0"
description = "Analyze NASA TESS data in the cloud."
license = "MIT"
authors = ["Geert Barentsen <hello@geert.io>"]
readme = "README.rst"
homepage = "https://github.com/SSDataLab/tess-cloud"
repository = "https://github.com/SSDataLab/tess-cloud"
keywords = ["NASA, TESS, Astronomy"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
[tool.poetry.dependencies]
python = "^3.8"
tess-locator = "^0.6"
tess-ephem = "^0.4"
lightkurve = "^2.3.0"
numpy = "^1.23.0"
astropy = "^5.2.0"
aioboto3 = ">=9.0.0"
diskcache = ">=5.2.1"
tqdm = ">=4.51.0"
aiohttp = ">=3.7.4"
nest-asyncio = ">=1.5.1"
s3fs = ">=0.5.2"
pyarrow = ">=3.0.0"
backoff = ">=1.10.0"
[tool.poetry.dev-dependencies]
pytest = "^6.0"
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 !=3.2.0 !=3.2.1"
jupyterlab = "^2.2.9"
pytest-xdist = "^2.1.0"
nest-asyncio = "^1.5"
memory-profiler = "^0.58.0"
mkdocs = "^1.1.2"
mkdocs-material = "^7.0.6"
dephell = "^0.8.3"
# tess-locator = {path = "../tess-locator", develop = true}
# tess-ephem = {path = "../tess-ephem", develop = true}
# lightkurve = {path = "../lightkurve", develop = true}
pytest-remotedata = "^0.3.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.dephell.main] # config for `dephell deps convert`
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}