-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.21 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pixelspointspolygons"
version = "0.1.0"
description = "The P3 Dataset: Pixels, Points and Polygons for Multimodal Building Vectorization"
authors = [
{ name = "Raphael Sulzer", email = "raphael.sulzer.1@gmail.com" }
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"albumentations",
"colorlog",
"descartes==1.1.0",
"huggingface_hub",
"hydra-core",
"laspy[lazrs]",
"matplotlib",
"numpy==1.25.2", # this line is only necessary when installing with open3d, i.e. pytorch 2.2, not necessary with the newest pytorch
"open3d==0.19.0",
"pandas",
"pycocotools",
"rasterio",
"scikit-image",
"scikit-learn",
"shapely",
"tensorboard",
"timm",
"torchmetrics",
"transformers",
"wandb",
# only for hisup
"Cython",
# only for FFL preprocessing
"kornia",
"skan",
"jsmin",
# only for FFL ASM polygonization (default is ACM)
# "torch-scatter==2.1.2" ## takes forever so making it optional
]
[tool.setuptools]
packages = ["pixelspointspolygons"]
[tool.setuptools.package-data]
pixelspointspolygons = ["conf/*.yaml"]