-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (46 loc) · 1004 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
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rasters"
version = "1.4.2"
description = "raster processing toolkit"
readme = "README.md"
authors = [
{ name = "Gregory Halverson", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"pandas",
"pillow",
"geopandas",
"h5py",
"matplotlib",
"msgpack",
"msgpack_numpy",
"numpy",
"pyproj",
"rasterio",
"shapely",
"scikit-image",
"affine",
"astropy",
"pykdtree",
"pyresample",
"pytest",
"scipy",
"six",
]
requires-python = ">=3.11"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov", # For test coverage reports (optional)
]
[tool.setuptools.package-data]
rasters = ["*.txt"]
[project.urls]
"Homepage" = "https://github.com/python-rasters/rasters"