-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (93 loc) · 2.41 KB
/
Copy pathpyproject.toml
File metadata and controls
103 lines (93 loc) · 2.41 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["setuptools>=68.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lisf-toolkit"
version = "0.1.0"
description = "NASA Land Information System Framework data toolkit for satellite data acquisition, processing, and analysis"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Sebastian R.O. Marshall", email = "sm4dy@virginia.edu"},
]
keywords = [
"NASA", "LISF", "land-surface", "hydrology", "remote-sensing",
"satellite", "MODIS", "ERA5", "geospatial", "earth-science",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dependencies = [
"numpy>=1.23.0",
"pandas>=1.5.0",
"xarray>=2023.1.0",
"netCDF4>=1.6.0",
"rasterio>=1.3.0",
"rioxarray>=0.14.0",
"geopandas>=0.13.0",
"shapely>=2.0.0",
"pyproj>=3.5.0",
"scipy>=1.10.0",
"earthaccess>=0.8.0",
"requests>=2.28.0",
"tqdm>=4.64.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
cds = [
"cdsapi>=0.6.0",
]
viz = [
"matplotlib>=3.7.0",
"cartopy>=0.22.0",
"folium>=0.15.0",
"plotly>=5.15.0",
]
ml = [
"scikit-learn>=1.3.0",
"xgboost>=2.0.0",
]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"black>=23.7.0",
"ruff>=0.1.0",
"mypy>=1.5.0",
]
all = [
"lisf-toolkit[cds,viz,ml,dev]",
]
[project.urls]
Homepage = "https://github.com/rushmarshall/LISF-Toolkit"
Repository = "https://github.com/rushmarshall/LISF-Toolkit"
Issues = "https://github.com/rushmarshall/LISF-Toolkit/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.black]
line-length = 99
target-version = ["py310"]
[tool.ruff]
line-length = 99
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true