-
Notifications
You must be signed in to change notification settings - Fork 265
/
pyproject.toml
59 lines (53 loc) · 1.48 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
[build-system]
requires = ["setuptools >= 64.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["plantcv"]
[project]
name = "plantcv"
description = "PlantCV: Plant phenotyping with computer vision"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
dependencies = [
"matplotlib >= 1.5",
"numpy >= 1.11, < 2",
"pandas",
"python-dateutil",
"scipy",
"scikit-image >= 0.19",
"scikit-learn",
"dask",
"dask-jobqueue",
"opencv-python",
"xarray >= 2022.11.0",
"statsmodels",
"altair",
"vl-convert-python",
]
requires-python = ">=3.8"
authors = [
{name = "PlantCV Team", email = "[email protected]"},
]
keywords = ["plantcv", "plant phenotyping", "image analysis", "computer vision"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 5 - Production/Stable",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
[project.scripts]
plantcv-run-workflow = "plantcv.parallel.cli:main"
plantcv-train = "plantcv.learn.cli:main"
plantcv-utils = "plantcv.utils.cli:main"
[project.urls]
Homepage = "https://plantcv.org"
Documentation = "https://plantcv.readthedocs.io"
Repository = "https://github.com/danforthcenter/plantcv"
[tool.setuptools_scm]