-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
91 lines (85 loc) · 2.14 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "plant3dvision"
version = "0.13.1"
description = "3D reconstruction & quantification of single potted plants from RGB scans."
readme = "README.md"
license = { text = "LGPL-3.0" }
authors = [
{ name = "Timothée Wintz", email = "[email protected]" }
]
maintainers = [
{ name = "Jonathan Legrand", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)"
]
keywords = [
"Robotics for Microfarms",
"ROMI",
"photogrammetry",
"SfM",
"COLMAP",
"pipeline",
]
requires-python = ">=3.8"
dependencies = [
"pywavefront",
"trimesh",
"appdirs",
"colorlog",
"docker",
"imageio>= 2.16.2",
"imagecodecs",
"pandas",
"networkx",
"open3d>= 0.9.0.0",
"opencv-contrib-python",
"pybind11",
"pyopencl",
"scikit-image",
"toml",
"joblib",
"matplotlib",
"dash",
"dash-iconify",
]
[project.scripts]
check_measures = "bin.check_measures:main"
colmap_poses = "bin.colmap_poses:main"
create_charuco_board = "bin.create_charuco_board:main"
volume_viewer = "bin.volume_viewer:main"
robustness_evaluation = "bin.robustness_evaluation:main"
voronoi_texture_generator = "bin.voronoi_texture_generator:main"
[project.urls]
Homepage = "https://romi-project.eu/"
Documentation = "https://docs.romi-project.eu/plant_imager/"
Repository = "https://github.com/romi/plant-3d-vision"
Issues = "https://github.com/romi/plant-3d-vision/issues"
[project.optional-dependencies]
doc = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"pymdown-extensions",
"markdown-exec[ansi]",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
]
[tool.setuptools]
packages = [
"romitask",
"plantdb",
"plant3dvision",
"romicgal",
"romiseg",
"dtw",
"skeleton_refinement",
]
include-package-data = true # Includes files from MANIFEST.in