-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (50 loc) · 1.25 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
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sdstools"
dynamic = ["readme"]
version = "0.0.1"
authors = [
{ name=" Daniel Buscombe", email="[email protected]" },
]
keywords = [
"sds-tools",
"coastsat",
"coastseg"
]
# find` directive with `include` or `exclude`
description = "A package for satellite derived shoreline post-processing workflows"
dependencies = [
"h5py>=3.10.0",
"pyTMD",
"coastsat-package>=0.1.65",
"area",
"aiohttp",
"chardet",
"dask",
"doodleverse-utils>=0.0.35",
"earthengine-api>=0.1.388",
"geojson",
"geopandas",
"jupyterlab>=3.0.0",
"leafmap>=0.14.0",
"nest-asyncio",
"cdsapi",
"bathyreq",
"statsmodels",
"xarray",]
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: GIS",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
# tells setup tools to include the code in the coastseg directory within the src directory
[tool.setuptools.packages.find]
where = ["src"]