-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (36 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
# tells setup tools to include the data in the coastsat directory
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*"=["*.kml","*.pkl"]
[project]
name = "coastsat_package"
dynamic = ["readme"]
version = "0.1.17"
authors = [
{ name="Kilian Vos & Sharon Fitzpatrick" },
]
# find` directive with `include` or `exclude`
description = "A Global shoreline mapping tool from satellite imagery"
dependencies = [ "scikit-image",
"earthengine-api>=0.1.304",
"matplotlib",
"astropy",
"tqdm",
"importlib-resources",
"pyqt5",
"scipy",
"numpy"]
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/kvos/CoastSat"
"Bug Tracker" = "https://github.com/kvos/CoastSat/issues"