-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
44 lines (40 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "seg2map"
dynamic = ["readme"]
version = "0.0.14"
authors = [
{ name=" Sharon Fitzpatrick", email="[email protected]" },
]
# find` directive with `include` or `exclude`
description = "An interactive jupyter notebook for downloading satellite imagery"
dependencies = [
"scikit-image",
"imageio",
"transformers",
"rasterio",
"area",
"doodleverse-utils>=0.0.33",
"ipyfilechooser>=0.6.0",
"tqdm",
"leafmap>=0.14.0",
"geemap",
"geojson",
"aiohttp",
"nest-asyncio",
"tensorflow"]
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
# tells setup tools to include the code in the coastseg directory within the src directory
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
"Homepage" = "https://github.com/Doodleverse/seg2map"
"Bug Tracker" = "https://github.com/Doodleverse/seg2map/issues"