-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (33 loc) · 965 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "senseiv2"
version = "0.1"
authors = [
{ name="Alistair Francis", email="alistair.m.francis@gmail.com" },
]
description = "Sensor Independent Cloud and Shadow Masking with Partial Labels and Multimodal Inputs"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"huggingface-hub >= 0.17",
"numpy",
"matplotlib >= 3.6.2",
"pyyaml >= 6.0",
"rasterio >= 1.3.4",
"scikit-image >= 0.19.3",
"segmentation-models-pytorch == 0.3.2",
"six",
"torchmetrics >= 1.1",
"transformers >= 4.34.0",
"wandb >= 0.15.12"
]
[project.urls]
Homepage = "https://github.com/aliFrancis/SEnSeIv2"
Issues = "https://github.com/aliFrancis/SEnSeIv2/issues"