-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
77 lines (73 loc) · 1.96 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "plantdb"
version = "0.13.01"
dependencies = [
"appdirs",
"colorlog",
"flask",
"flask-cors",
"flask-restful",
"imagecodecs",
"imageio >=2.16.2",
"numpy",
"open3d >=0.9.0.0",
"pillow",
"plyfile",
"toml",
"tqdm",
]
description = "Database library for the ROMI project."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Nabil Ait Taleb", email = "mohamednabil.aittaleb@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",
"Database",
"REST API",
]
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]
fsdb_check = "plantdb.cli.fsdb_check:main"
fsdb_import_file = "plantdb.cli.fsdb_import_file:main"
fsdb_import_folder = "plantdb.cli.fsdb_import_folder:main"
fsdb_import_images = "plantdb.cli.fsdb_import_images:main"
fsdb_rest_api = "plantdb.cli.fsdb_rest_api:main"
fsdb_sync = "plantdb.cli.fsdb_sync:main"
shared_fsdb = "plantdb.cli.shared_fsdb:main"
[project.urls]
Homepage = "https://romi-project.eu/"
Documentation = "https://docs.romi-project.eu/plant_imager/"
Repository = "https://github.com/romi/plantdb"
Issues = "https://github.com/romi/plantdb/issues"
[project.optional-dependencies]
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]",
]