-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (36 loc) · 1.21 KB
/
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "griml"
version = "0.1.1"
description = "A workflow for classifying ice marginal lakes from satellite imagery and compiling lake inventories"
readme = "README.md"
authors = [{name = "Penelope How", email = "pho@geus.dk"}]
maintainers = [{name = "Penelope How", email = "pho@geus.dk"}]
license = {text = "MIT"}
keywords = ["glaciology", "remote sensing", "cryosphere", "ice marginal lake", "ESA"]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent"
]
dependencies = [
"geopandas",
"pandas",
"scipy",
"Shapely",
"rasterio"
]
requires-python = ">= 3.8"
[project.urls]
"Homepage" = "https://github.com/GEUS-Glaciology-and-Climate/GrIML"
"Bug Tracker" = "https://github.com/GEUS-Glaciology-and-Climate/GrIML/issues"
[tool.setuptools.packages.find]
where = ["src"]