-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (50 loc) · 1.34 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "spectral_clustering"
version = "0.0.1"
description = "A Python package to perform segmentation of 3D plant point clouds."
readme = "README.md"
license = { text = "cecill-c" }
authors = [
{ name = "Katia Mirande", email = "[email protected]" }
]
maintainers = [
{ name = "Jonathan Legrand", email = "[email protected]" },
]
requires-python = ">=3.8"
dependencies = [
"click",
"matplotlib",
"networkx",
"numpy",
"pandas",
"open3d",
"ortools",
"scikit-learn",
"scipy",
"yellowbrick",
]
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+)"
]
[project.urls]
Homepage = "https://docs.romi-project.eu/plant_imager/"
Documentation = "https://romi.github.io/spectral-clustering/"
Repository = "https://github.com/romi/spectral-clustering"
Issues = "https://github.com/romi/spectral-clustering/issues"
[project.optional-dependencies]
doc = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"pymdown-extensions",
"markdown-exec[ansi]",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
]