Skip to content

Commit

Permalink
Use pyproject.toml instead of setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiencyr committed Mar 14, 2024
1 parent e91ecc3 commit e7efa6a
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "eoreader"
authors = [
{name = "ICube-SERTIT", email = "dev-sertit@unistra.fr"},
]
description = "Remote-sensing opensource python library reading optical and SAR constellations, loading and stacking bands, clouds, DEM and spectral indices in a sensor-agnostic way."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache 2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"lxml",
"h5netcdf",
"scipy",
"rasterio>=1.3.0",
"xarray>=0.18.0",
"rioxarray>=0.10.0",
"geopandas>=0.11.0",
"sertit[full]>=1.27.0",
"spyndex>=0.3.0",
"pyresample",
"zarr",
"rtree",
"validators",
"methodtools",
"dicttoxml",
]

0 comments on commit e7efa6a

Please sign in to comment.