-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
44 lines (40 loc) · 997 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
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "harmonized_landsat_sentinel"
version = "1.1.1"
description = "Harmonized Landsat Sentinel (HLS) search and download utility"
readme = "README.md"
authors = [
{ name = "Gregory H. Halverson", email = "gregory.h.halverson@jpl.nasa.gov" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"beautifulsoup4",
"colored-logging",
"earthaccess",
"matplotlib",
"numpy",
"pandas",
"pytest",
"python-dateutil",
"rasterio",
"rasters",
"requests",
"sentinel-tiles",
"shapely"
]
requires-python = ">=3.11"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov", # For test coverage reports (optional)
]
[tool.setuptools.package-data]
HLS = ["*.txt"]
[project.urls]
"Homepage" = "https://github.com/STARS-Data-Fusion/HLS"