-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (58 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
62 lines (58 loc) · 1.68 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
[build-system]
requires = ["setuptools >=75"]
build-backend = "setuptools.build_meta"
[project]
name = "romitask"
version = "0.12.1"
dependencies = [
"numpy",
"colorlog",
"luigi",
"toml",
"tqdm",
"watchdog",
]
description = "The ROMI task runner, a luigi based task pipeline."
readme = "README.md"
requires-python = ">=3.8"
license = { 'text' = "LGPL-3.0-or-later" } # to replace by "LGPL-3.0-or-later" only in next release, pending deprecation
authors = [
{ name = "Peter Hanappe", email = "peter.hanappe@sony.com" },
{ name = "Timothée Wintz", email = "timothee@timwin.fr" },
{ name = "Nabil Ait Taleb", email = "mohamednabil.aittaleb@sony.com" },
]
maintainers = [
{ name = "Jonathan Legrand", email = "jonathan.legrand@ens-lyon.fr" }
]
keywords = [
"Robotics for Microfarms",
"ROMI",
"Runner",
"Luigi",
"Pipeline",
]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Natural Language :: English",
]
[project.scripts]
print_task_info = "romitask.cli.print_task_info:main"
romi_run_task = "romitask.cli.romi_run_task:main"
[project.urls]
homepage = "https://romi-project.eu/"
documentation = "https://docs.romi-project.eu/plant_imager/"
source = "https://github.com/romi/romitask"
issues = "https://github.com/romi/romitask/issues"
[project.optional-dependencies]
doc = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"pymdown-extensions",
"markdown-exec[ansi]",
]