-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.27 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
[build-system]
requires = ["setuptools >= 64.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["littlecv"]
[project]
name = "littlecv"
description = "littleCV: Learn to contribute to PlantCV"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
dependencies = [
"matplotlib >= 1.5",
"numpy >= 2",
"pandas",
"python-dateutil",
"scikit-image >= 0.19",
"opencv-python-headless"
]
requires-python = ">=3.8"
authors = [
{name = "PlantCV Team", email = "plantcv@danforthcenter.org"},
]
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",
]
[tool.pytest.ini_options]
testpaths = "tests"
[project.urls]
Homepage = "https://plantcv.org"
Documentation = "https://plantcv.readthedocs.io"
Repository = "https://github.com/danforthcenter/contributing_tutorial"
[tool.setuptools_scm]
version_scheme = "no-guess-dev"