-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.17 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
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rasters"
version = "1.18.0"
description = "raster processing toolkit"
readme = "README.md"
authors = [
{ name = "Gregory Halverson", email = "gregory.h.halverson@jpl.nasa.gov" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"affine",
"astropy",
"ECOv002-calval-tables",
"geopandas",
"h5py",
"matplotlib",
"msgpack",
"msgpack_numpy",
"numpy",
"pandas",
"pillow",
"pykdtree>=1.3.11",
"pyproj",
"pyresample",
"pytest",
"rasterio",
"scikit-image",
"scipy",
"shapely",
"six",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"build",
"jupyter",
"pytest>=6.0",
"pytest-cov",
"twine"
]
[tool.setuptools.packages.find]
exclude = ["notebooks*", "examples*"]
[project.urls]
"Homepage" = "https://github.com/python-rasters/rasters"
[tool.pytest.ini_options]
filterwarnings = [
"ignore:The 'shapely.geos' module is deprecated:DeprecationWarning:geopandas._compat",
]