-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (68 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
74 lines (68 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "easyidp"
dynamic = ["version"]
description = "A handy tool for dealing with region of interest (ROI) on the image reconstruction (Metashape & Pix4D) outputs, mainly in agriculture applications"
readme = "README.md"
authors = [
{ name = "Haozhou Wang", email = "howcanoewang@gmail.com" }
]
requires-python = ">=3.10"
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"chardet>=5.2.0",
"gdown>=5.2.0",
"geojson>=3.2.0",
"imagecodecs>=2025.3.30",
"laspy>=2.5.4",
"lazrs>=0.6.3",
"matplotlib>=3.10.3",
"numpy>=2.2.5",
"plyfile>=1.1",
"psutil>=7.1.3",
"pyproj>=3.7.1",
"pyshp>=3.0.3",
"rasterio>=1.4.3",
"scikit-image>=0.25.2",
"scipy>=1.15.3",
"shapely>=2.1.0",
"tabulate>=0.9.0",
"tqdm>=4.67.1",
"trimesh>=4.11.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
docs = [
"furo>=2024.8.6",
"ipython>=8.36.0",
"nbsphinx>=0.9.7",
"sphinx>=8.1.3",
"sphinx-gallery>=0.19.0",
"sphinx-inline-tabs>=2023.4.21",
"sphinx-intl>=2.3.1",
]
test = [
"oss2>=2.19.1",
"pytest>=8.3.5",
"pytest-xdist>=3.6.1",
]
[tool.hatch.version]
path = "src/easyidp/__init__.py"
[project.urls]
documentation = 'https://easyidp.readthedocs.io/en/latest/'
source = 'https://github.com/UTokyo-FieldPhenomics-Lab/EasyIDP'
issues = 'https://github.com/UTokyo-FieldPhenomics-Lab/EasyIDP/issues'
forum = 'https://github.com/UTokyo-FieldPhenomics-Lab/EasyIDP/discussions'