forked from yannforget/landsatxplore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.02 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
[tool.poetry]
name = "landsatxplore"
version = "0.13.0"
description = "Search and download Landsat scenes from EarthExplorer"
authors = ["Yann Forget <[email protected]>"]
maintainers = ["Yann Forget <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/yannforget/landsatxplore"
repository = "https://github.com/yannforget/landsatxplore"
documentation = "https://github.com/yannforget/landsatxplore"
keywords = [
"earth observation",
"remote sesing",
"GIS",
"satellite imagery",
"landsat",
"sentinel",
"usgs"
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.20"
tqdm = "^4.58"
click = "^7.1"
shapely = "^1.7"
python-dateutil = "^2.8"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pytest-cov = "^2.11"
[tool.poetry.urls]
issues = "https://github.com/yannforget/landsatxplore/issues"
[tool.poetry.scripts]
landsatxplore = "landsatxplore.cli:cli"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 88