-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.45 KB
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
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "Satellite-images-inference"
version = "0.1.0"
description = "This repository contains code for performing segmentation inference on satellite images using deep learning models. It includes the API code for the inference process"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"albumentations>=2.0.5",
"astrovision>=0.14.7",
"fastapi>=0.115.12",
"gdal>=3.10.2",
"geopandas>=1.0.1",
"logging>=0.4.9.6",
"mlflow>=2.21.3",
"numpy>=2.2.4",
"pandas>=2.2.3",
"pqdm>=0.2.0",
"pyarrow>=19.0.1",
"pydantic>=2.11.2",
"pytorch-lightning>=2.5.1",
"requests>=2.32.3",
"s3fs>=2025.3.2",
"shapely>=2.1.0",
"torch>=2.6.0",
"torchvision>=0.21.0",
"transformers>=4.50.3",
"lxml>=5.4.0",
"monai>=1.5.0",
]
authors = [
{name="Thomas Faria", email="thomas.faria@insee.fr"}
]
[dependency-groups]
dev = [
"ruff>=0.11.0",
"pre-commit>=4.2.0",
"pip>=25.1.1",
"ipykernel>=6.29.5",
]
[tool.ruff]
line-length = 130
[tool.uv]
default-groups = ["dev"]
[tool.uv.sources]
gdal = [
{ index = "gdal-wheels", marker = "sys_platform == 'linux'" },
{ index = "geospatial_wheels", marker = "sys_platform == 'win32'" },
]
[[tool.uv.index]]
name = "geospatial_wheels"
url = "https://nathanjmcdougall.github.io/geospatial-wheels-index/"
explicit = true
[[tool.uv.index]]
name = "gdal-wheels"
url = "https://gitlab.com/api/v4/projects/61637378/packages/pypi/simple"
explicit = true