-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
45 lines (40 loc) · 961 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
34
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "pylandsat"
version = "0.6.0"
description = "Search, download and preprocess Landsat imagery"
authors = ["Yann Forget <yannforget@mailbox.org>"]
maintainers = ["Yann Forget <yannforget@mailbox.org>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/yannforget/pylandsat"
repository = "https://github.com/yannforget/pylandsat"
documentation = "https://github.com/yannforget/pylandsat"
keywords = [
"earth observation",
"remote sesing",
"GIS",
"satellite imagery",
"landsat"
]
[tool.poetry.dependencies]
python = "^3.6"
click = "*"
appdirs = "*"
requests = "^2.20"
fiona = "*"
shapely = "*"
tqdm = "*"
numpy = "*"
rasterio = "^1.0"
geopy = "*"
python-dateutil = "*"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pytest-cov = "^2.11"
[tool.poetry.scripts]
pylandsat = "pylandsat.cli:cli"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 88