-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (78 loc) · 2.13 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "plantimager"
version = "0.2.1"
dependencies = [
'colorlog',
'imageio',
'numpy',
'psutil',
'requests',
'pyserial',
'tqdm',
# Required by WebUI:
"dash",
"dash-bootstrap-components",
"dash-ag-grid",
]
description = "ROMI library controlling the PlantImager (hardware) or the VirtualPlantImager (Blender) to acquire images of (virtual) single potted plants."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Nabil Ait Taleb", email = "mohamednabil.aittaleb@sony.com" },
{ name = "Julie Charlaix", email = "julie.charlaix@ens-lyon.fr" },
{ name = "David Colliaux", email = "david.colliaux@sony.com" },
{ name = "Peter Hanappe", email = "peter.hanappe@sony.com" },
{ name = "Timothée Wintz", email = "timothee@timwin.fr" },
]
maintainers = [
{ name = "Jonathan Legrand", email = "jonathan.legrand@ens-lyon.fr" }
]
keywords = [
"Robotics for Microfarms",
"ROMI",
"virtual plant",
"scanner",
]
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.scripts]
generate_dataset = "plantimager.cli.generate_dataset:main"
hardware_robustness = "plantimager.cli.hardware_robustness:main"
multi_scan = "plantimager.cli.multi_scan:main"
[project.urls]
Homepage = "https://romi-project.eu/"
Documentation = "https://docs.romi-project.eu/plant_imager/"
Repository = "https://github.com/romi/plant-imager"
Issues = "https://github.com/romi/plant-imager/issues"
[project.optional-dependencies]
virtual = [
"markupsafe",
"flask",
"itsdangerous",
"click",
"werkzeug",
"jinja2",
"imageio",
]
doc = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"pymdown-extensions",
"markdown-exec[ansi]",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
]
test = [
"nose2[coverage]",
"coverage[toml]",
]